forked from osrg/rustybgp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (38 loc) · 1005 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
35
36
37
38
39
40
41
[package]
name = "rustybgpd"
version = "0.2.0"
authors = ["FUJITA Tomonori <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ascii = "1"
tonic = "0.5.2"
bytes = "1.3"
chrono = "0.4"
prost = "0.8"
prost-types = "0.8"
prost-derive = "0.8"
tokio = { version = "=1.26.0", features = ["full"] }
tokio-util = { version = "0.6", features = ["codec","time"] }
tokio-stream = { version = "0.1", features = ["net"] }
clap = "2.34"
futures = "=0.3.16"
futures-core = "=0.3.16"
patricia_tree = "0.3"
regex = "1"
hostname = "0.3"
fnv = "1.0"
num_cpus = "1.14"
socket2 = { version="0.4", features = ["all"]}
byteorder = "1.4.3"
once_cell = "1"
thiserror = "1"
libc = "0.2.137"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
toml = "0.5.9"
nix = "0.22"
uuid = { version = "0.8", features = ["v4"] }
ip_network_table-deps-treebitmap = "0.5.0"
[build-dependencies]
tonic-build = "0.5.2"