Files
solana/sys-tuner/Cargo.toml
Pankaj Garg 076e384bb5 Tool to tune system parameters like PoH service priority (#7155)
* New daemon to tune system parameters like PoH service priority

* fixes for Linux

* integrate with poh_service

* fixes

* address review comments

* remove `dead_code` directive
2019-12-02 16:46:46 -08:00

29 lines
609 B
TOML

[package]
authors = ["Solana Maintainers <maintainers@solana.com>"]
edition = "2018"
name = "solana-sys-tuner"
description = "The solana cluster system tuner daemon"
version = "0.22.0"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
publish = true
[dependencies]
clap = "2.33.0"
log = "0.4.8"
semver = "0.9.0"
solana-logger = { path = "../logger", version = "0.22.0" }
[target."cfg(unix)".dependencies]
unix_socket2 = "0.5.4"
users = "0.9.1"
nix = "0.16.0"
[lib]
name = "solana_sys_tuner"
[[bin]]
name = "solana-sys-tuner"
path = "src/main.rs"