2019-11-04 20:13:43 -08:00
|
|
|
[package]
|
|
|
|
name = "solana-perf"
|
2023-01-31 15:48:33 -08:00
|
|
|
version = "1.16.0"
|
2019-11-04 20:13:43 -08:00
|
|
|
description = "Solana Performance APIs"
|
2023-01-31 05:07:13 -08:00
|
|
|
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
|
2023-01-24 23:50:41 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
homepage = "https://solana.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-perf"
|
2023-01-24 23:50:41 -08:00
|
|
|
edition = "2021"
|
2019-11-04 20:13:43 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-24 23:50:41 -08:00
|
|
|
ahash = "0.7.6"
|
|
|
|
bincode = "1.3.3"
|
|
|
|
bv = { version = "0.11.1", features = ["serde"] }
|
|
|
|
curve25519-dalek = { version = "3" }
|
|
|
|
dlopen = "0.1.8"
|
|
|
|
dlopen_derive = "0.1.4"
|
|
|
|
fnv = "1.0.7"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4.17"
|
|
|
|
rand = "0.7.0"
|
|
|
|
rayon = "1.5.3"
|
2023-02-01 15:27:17 -08:00
|
|
|
serde = "1.0.152"
|
2023-01-31 15:48:33 -08:00
|
|
|
solana-metrics = { path = "../metrics", version = "=1.16.0" }
|
|
|
|
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.16.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.16.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.16.0" }
|
2019-11-04 20:13:43 -08:00
|
|
|
|
2021-10-26 18:07:37 -07:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2023-01-24 23:50:41 -08:00
|
|
|
caps = "0.5.4"
|
|
|
|
libc = "0.2.131"
|
|
|
|
nix = "0.25.0"
|
2021-10-26 18:07:37 -07:00
|
|
|
|
2019-11-04 20:13:43 -08:00
|
|
|
[lib]
|
|
|
|
name = "solana_perf"
|
|
|
|
|
2019-11-06 10:52:30 -08:00
|
|
|
[dev-dependencies]
|
2023-01-24 23:50:41 -08:00
|
|
|
matches = "0.1.9"
|
2023-01-31 15:48:33 -08:00
|
|
|
solana-logger = { path = "../logger", version = "=1.16.0" }
|
2019-11-06 10:52:30 -08:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sigverify"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
2022-05-22 18:40:33 -07:00
|
|
|
[[bench]]
|
|
|
|
name = "discard"
|
|
|
|
|
2020-04-16 18:18:28 -07:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|