clone-shim/Cargo.toml

38 lines
600 B
TOML
Raw Normal View History

2022-02-11 16:27:45 +00:00
[package]
2022-05-26 10:48:04 +01:00
name = "void-orchestrator"
2022-02-11 16:27:45 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
env_logger = "0.9"
thiserror = "1"
2022-02-13 23:52:41 +00:00
clap = "3"
exitcode = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ipnetwork = "0.18"
2022-02-11 16:27:45 +00:00
libc = "0.2.117"
2022-05-19 17:18:05 +01:00
nix = "0.24.1"
2022-03-01 11:29:13 +00:00
close_fds = "0.3.2"
2022-03-27 16:24:07 +01:00
tempfile = "3.3"
2022-03-28 01:47:51 +01:00
[dev-dependencies]
criterion = "0.3"
2022-05-23 19:42:07 +01:00
anyhow = "1"
2022-03-28 01:47:51 +01:00
2022-05-21 17:18:28 +01:00
# examples/tls
httparse = "1"
2022-05-23 19:42:07 +01:00
rustls = "0.20"
rustls-pemfile = "1"
2022-05-24 17:22:47 +01:00
lazy_static = "1"
2022-05-21 17:18:28 +01:00
2022-03-28 01:47:51 +01:00
[[bench]]
name = "clone3"
harness = false