2019-11-04 20:13:43 -08:00
|
|
|
[package]
|
|
|
|
name = "solana-perf"
|
2021-12-04 00:18:04 -08:00
|
|
|
version = "1.10.0"
|
2019-11-04 20:13:43 -08:00
|
|
|
description = "Solana Performance APIs"
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2019-11-04 20:13:43 -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"
|
2021-11-30 16:47:00 -08:00
|
|
|
edition = "2021"
|
2019-11-04 20:13:43 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-21 09:06:31 -07:00
|
|
|
bincode = "1.3.3"
|
2021-06-24 21:32:32 -07:00
|
|
|
curve25519-dalek = { version = "3" }
|
2021-06-07 18:20:17 -07:00
|
|
|
dlopen = "0.1.8"
|
2019-11-04 20:13:43 -08:00
|
|
|
dlopen_derive = "0.1.4"
|
2019-11-07 19:48:33 -08:00
|
|
|
lazy_static = "1.4.0"
|
2021-06-30 11:32:01 -07:00
|
|
|
log = "0.4.14"
|
2021-06-07 18:20:17 -07:00
|
|
|
rand = "0.7.0"
|
2021-06-10 12:18:47 -07:00
|
|
|
rayon = "1.5.1"
|
2021-08-30 11:19:34 -07:00
|
|
|
serde = "1.0.130"
|
2021-12-04 00:18:04 -08:00
|
|
|
solana-logger = { path = "../logger", version = "=1.10.0" }
|
|
|
|
solana-metrics = { path = "../metrics", version = "=1.10.0" }
|
|
|
|
solana-sdk = { path = "../sdk", version = "=1.10.0" }
|
|
|
|
solana-vote-program = { path = "../programs/vote", version = "=1.10.0" }
|
|
|
|
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.10.0" }
|
2019-11-04 20:13:43 -08:00
|
|
|
|
2021-10-26 18:07:37 -07:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
|
|
|
caps = "0.5.3"
|
2021-12-06 08:37:26 -08:00
|
|
|
libc = "0.2.109"
|
2021-10-26 18:07:37 -07:00
|
|
|
nix = "0.23.0"
|
|
|
|
|
2019-11-04 20:13:43 -08:00
|
|
|
[lib]
|
|
|
|
name = "solana_perf"
|
|
|
|
|
2019-11-06 10:52:30 -08:00
|
|
|
[dev-dependencies]
|
2021-08-13 09:37:45 -07:00
|
|
|
matches = "0.1.9"
|
2019-11-06 10:52:30 -08:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "sigverify"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|