# vroomrs **Repository Path**: mirrors_getsentry/vroomrs ## Basic Information - **Project Name**: vroomrs - **Description**: Profiling library written in Rust - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-11 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Sentry

# Sentry vroomrs [![GitHub Release](https://img.shields.io/github/release/getsentry/vroomrs.svg)](https://github.com/getsentry/vroomrs/releases/latest) `vroomrs` is Sentry's profiling library (a Python extension module), processing and deriving data about your profiles. It's written in Rust. The name was inspired by this [video](https://www.youtube.com/watch?v=t_rzYnXEQlE). ## Development In order to develop for `vroomrs`, you will need: - `rust` - `python` - `make` - `pre-commit` ## pre-commit In order to install `pre-commit`, you will need `python` and run: ```sh pip install --user pre-commit ``` Once `pre-commit` is installed, you'll have to set up the actual git hook scripts with: ```sh pre-commit install ``` ## Build ```sh make build ``` ## Docs After a successful build, the module api documentation can be found under `docs > build > html > index.html` ## Run tests ```sh make test ```