solana/measure/Cargo.toml

31 lines
913 B
TOML

[package]
name = "solana-measure"
description = "Blockchain, Rebuilt for Scale"
version = "1.7.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-measure"
readme = "../README.md"
repository = "https://github.com/solana-labs/solana"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
log = "0.4.11"
solana-sdk = { path = "../sdk", version = "1.7.0" }
solana-metrics = { path = "../metrics", version = "1.7.0" }
[target."cfg(unix)".dependencies]
jemallocator = "0.3.2"
jemalloc-ctl = "0.3.2"
[features]
# mainly for heaptrack, which seems to be incompatible with jemalloc
# opt-out ("no-" prefix) is chosen for convenience for the default case
# (= with jemalloc), considering complexies of proper opt-in (default)
# feature plumbing
no-jemalloc = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]