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-05-27 08:51:53 -07:00
|
|
|
version = "1.8.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"
|
2021-06-30 11:32:01 -07:00
|
|
|
log = "0.4.14"
|
2021-06-18 10:51:06 -07:00
|
|
|
libc = "0.2.97"
|
2021-05-27 08:51:53 -07:00
|
|
|
solana-clap-utils = { path = "../clap-utils", version = "=1.8.0" }
|
|
|
|
solana-logger = { path = "../logger", version = "=1.8.0" }
|
|
|
|
solana-version = { path = "../version", version = "=1.8.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"
|
2021-06-09 11:01:26 -07:00
|
|
|
nix = "0.20.0"
|
2021-05-31 09:20:49 -07:00
|
|
|
sysctl = "0.4.1"
|
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"]
|