2019-12-02 16:46:46 -08:00
|
|
|
[package]
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2019-12-02 16:46:46 -08:00
|
|
|
edition = "2018"
|
|
|
|
name = "solana-sys-tuner"
|
|
|
|
description = "The solana cluster system tuner daemon"
|
2021-03-12 23:31:17 -08:00
|
|
|
version = "1.7.0"
|
2019-12-02 16:46:46 -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-sys-tuner"
|
2019-12-02 16:46:46 -08:00
|
|
|
publish = true
|
|
|
|
|
|
|
|
[dependencies]
|
2020-05-11 14:32:50 -07:00
|
|
|
clap = "2.33.1"
|
2020-12-12 20:48:23 -08:00
|
|
|
log = "0.4.11"
|
2020-12-12 19:13:17 -08:00
|
|
|
libc = "0.2.81"
|
2021-03-15 22:16:08 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.7.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.7.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.7.0" }
|
2019-12-02 16:46:46 -08:00
|
|
|
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
unix_socket2 = "0.5.4"
|
2020-04-10 12:47:21 -07:00
|
|
|
users = "0.10.0"
|
2020-11-18 01:02:36 -08:00
|
|
|
nix = "0.19.0"
|
2019-12-04 15:17:24 -08:00
|
|
|
sysctl = "0.4.0"
|
2019-12-02 16:46:46 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "solana_sys_tuner"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "solana-sys-tuner"
|
|
|
|
path = "src/main.rs"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|