You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
TOML
16 lines
419 B
TOML
[package]
|
|
name = "rocker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rand = "0.8.5"
|
|
uuid = {version = "1.3", features = ["v4"]}
|
|
toml = "0.8.8"
|
|
clap = {version = "4.5.0", features = ["derive"]}
|
|
nix = {version = "0.29", features = ["sched", "process", "hostname", "mount", "fs", "env", "user", "term", "signal"]}
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[[bin]]
|
|
name = "network"
|
|
path = "src/network.rs" |