-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
38 lines (34 loc) · 1.39 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
[package]
name = "routecore"
version = "0.5.0-rc2-dev"
authors = ["NLnet Labs <[email protected]>"]
categories = ["network-programming"]
description = "A Library with Building Blocks for BGP Routing"
documentation = "https://docs.rs/routecore/"
repository = "https://github.com/NLnetLabs/routecore"
edition = "2021"
rust-version = "1.76"
keywords = ["routing", "bgp"]
license = "BSD-3-Clause"
[dependencies]
inetnum = { version = "0.1.1", features = ["arbitrary", "serde"] }
arbitrary = { version = "1.3.1", optional = true, features = ["derive"] }
bytes = { version = "1.2", optional = true }
chrono = { version = "0.4.20", optional = true, default-features = false }
const-str = { version = "0.5", optional = true, features = ["case"] }
log = { version = "0.4.4", optional = true }
octseq = { version = "0.4.0", optional = true, features = ["bytes"] }
paste = { version = "1" }
serde = { version = "1.0.165", optional = true, features = ["derive"] }
tokio = { version = ">=1.24.2", optional = true, features = ["io-util", "macros", "net", "sync", "rt-multi-thread", "time"] }
rayon = { version = "1.10", optional = true }
[dev-dependencies]
memmap2 = "0.9"
serde_test = "1"
[features]
default = ["bgp"]
bgp = ["bytes", "log", "octseq", "const-str"]
bmp = ["bgp", "chrono"]
fsm = ["tokio"]
mrt = ["bgp", "fsm", "rayon", "serde"]
bgpsec = []