2019-11-04 20:13:43 -08:00
|
|
|
[package]
|
|
|
|
name = "solana-perf"
|
|
|
|
description = "Solana Performance APIs"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-perf"
|
2023-03-28 20:28:56 -07:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2019-11-04 20:13:43 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
ahash = { workspace = true }
|
|
|
|
bincode = { workspace = true }
|
|
|
|
bv = { workspace = true, features = ["serde"] }
|
|
|
|
curve25519-dalek = { workspace = true }
|
2023-07-27 09:30:22 -07:00
|
|
|
dlopen2 = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
fnv = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
2023-10-06 21:15:38 -07:00
|
|
|
solana-frozen-abi = { workspace = true }
|
|
|
|
solana-frozen-abi-macro = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-metrics = { workspace = true }
|
|
|
|
solana-rayon-threadlimit = { workspace = true }
|
|
|
|
solana-sdk = { workspace = true }
|
|
|
|
solana-vote-program = { workspace = true }
|
2019-11-04 20:13:43 -08:00
|
|
|
|
2021-10-26 18:07:37 -07:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
caps = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
nix = { workspace = true }
|
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-09-07 05:52:57 -07:00
|
|
|
assert_matches = { workspace = true }
|
2023-08-21 10:11:21 -07:00
|
|
|
rand_chacha = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
solana-logger = { workspace = true }
|
2023-03-16 09:45:42 -07:00
|
|
|
test-case = { workspace = true }
|
2019-11-06 10:52:30 -08:00
|
|
|
|
2023-10-06 21:15:38 -07:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = { workspace = true }
|
|
|
|
|
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"]
|