-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 737 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "rallo"
description = "Rust allocator for tracking memory usage"
version = "0.5.2"
edition = "2024"
license = "MIT"
keywords = [ "profiling", "memory", "allocation", "tracking", "allocator" ]
categories = [ "development-tools", "development-tools::profiling", "memory-management" ]
authors = [
"Tommaso Allevi <tomallevi@gmail.com>",
]
documentation = "https://docs.rs/rallo"
repository = "https://github.com/oramasearch/rallo"
homepage = "https://crates.io/crates/rallo"
[lib]
name = "rallo"
[dependencies]
backtrace = "0.3.74"
fxprof-processed-profile = "0.8.1"
rustc-demangle = "0.1.24"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
[dev-dependencies]
pretty_assertions = "1.4.1"