forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 816 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["Solana Maintainers <[email protected]>"]
edition = "2021"
name = "solana-sys-tuner"
description = "The solana cluster system tuner daemon"
version = "1.11.4"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-sys-tuner"
publish = true
[dependencies]
clap = "2.33.1"
libc = "0.2.126"
log = "0.4.17"
solana-logger = { path = "../logger", version = "=1.11.4" }
solana-version = { path = "../version", version = "=1.11.4" }
[target."cfg(unix)".dependencies]
unix_socket2 = "0.5.4"
users = "0.10.0"
nix = "0.24.0"
sysctl = "0.4.4"
[lib]
name = "solana_sys_tuner"
[[bin]]
name = "solana-sys-tuner"
path = "src/main.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]