-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 1.08 KB
/
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
[package]
name = "rooster"
version = "1.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "*"
socket2 = { version = "0.3", features = [ "pair", "unix", "reuseport" ] }
nix = { version = "0.19" }
moz_cbor = { git = "https://github.com/AnimaGUS-minerva/cbor-rust.git", branch = "implement-strings" }
tokio = { version = "1.7", features = [ "macros", "io-util", "time", "process", "sync", "signal", "rt-multi-thread"] }
structopt = "0.3"
futures = "0.3.15"
rtnetlink = { version = "0.11" }
netlink-proto = { version = "*", features = [ "tokio_socket" ] }
netlink-packet-sock-diag = "*"
netlink-packet-route = { version = "0.13" }
custom_error = "*"
rand = { version = "0.8.5", features = ["small_rng"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[dev-dependencies]
tokio-test = "0.4.2"
async-trait = "0.1.57"
hex-literal = { version = "0.3.3" }
[patch.crates-io]
hex-literal = { git = "https://github.com/AnimaGUS-minerva/utils.git", branch = "allow-hash-comments-in-hex" }