-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1.98 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "connect"
edition = "2018"
version = "1.0.0"
authors = ["Michael Richardson <[email protected]>"]
# build = "build.rs"
[dependencies]
socket2 = { version = "*", features = [ "pair", "unix", "reuseport" ] }
futures = "0.3.15"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
serde_cbor = "0.11.1"
#moz_cbor = { version = "0.1", path="/ssw/projects/pandora/riotos/cbor-rust" }
moz_cbor = { git = "https://github.com/AnimaGUS-minerva/cbor-rust.git", branch = "implement-strings" }
nix = { version = "0.19" }
netlink-packet-route = { version = "*" }
rtnetlink = { version = "0.9" }
netlink-proto = { version = "*", features = [ "tokio_socket" ] }
netlink-packet-sock-diag = "*"
async-trait = "0.1.48"
tokio = { version = "1.7", features = [ "macros", "io-util", "time", "process", "sync", "signal", "rt-multi-thread"] }
tokio-util = { version = "0.6.0", features = ["codec"] }
tokio-serde = { version = "*", features = ["cbor" ] }
bytes = "*"
futures-sink = "*"
gag = "*"
libc = "*"
custom_error = "*"
rand = "*"
structopt = "0.3"
sysctl = "0.4"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
tokio-test = "0.4.2"
hex-literal = { version = "0.3.3" }
[patch.crates-io]
rtnetlink = { git = "https://github.com/AnimaGUS-minerva/netlink", features = [ "tokio_socket" ] }
netlink-packet-route = { git = "https://github.com/AnimaGUS-minerva/netlink" }
netlink-packet-core = { git = "https://github.com/AnimaGUS-minerva/netlink" }
netlink-proto = { git = "https://github.com/AnimaGUS-minerva/netlink" }
netlink-sys = { git = "https://github.com/AnimaGUS-minerva/netlink" }
netlink-packet-utils = { git = "https://github.com/AnimaGUS-minerva/netlink" }
netlink-packet-sock-diag = { git = "https://github.com/AnimaGUS-minerva/netlink" }
hex-literal = { git = "https://github.com/AnimaGUS-minerva/utils.git", branch = "allow-hash-comments-in-hex" }