-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
52 lines (44 loc) · 1.33 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
50
51
52
[package]
categories = ["network-programming"]
description = "A library for storing and retrieving IP Prefixes"
documentation = "https://docs.rs/rotonda/"
homepage = "https://nlnetlabs.nl/projects/routing/rotonda/"
keywords = ["routing", "bgp"]
name = "rotonda-store"
# version = "0.4.0-rc1"
repository = "https://github.com/NLnetLabs/rotonda-store/"
version.workspace = true
edition.workspace = true
authors.workspace = true
rust-version.workspace = true
license.workspace = true
[workspace]
members = ["proc_macros"]
[workspace.package]
version = "0.4.0-rc1"
edition = "2021"
authors = ["NLnet Labs <routing-team@nlnetlabs.nl>"]
license = "BSD-3-Clause"
rust-version = "1.80"
[dependencies]
crossbeam-epoch = "^0.9"
crossbeam-utils = "^0.8"
inetnum = "0.1.0"
log = "^0.4"
roaring = "0.10.3"
rotonda-macros = { path = "proc_macros", version = "0.4.0-rc1" }
routecore = { version = "0.5.0-rc1", features = ["bgp", "bmp", "fsm", "serde"] }
ansi_term = { version = "0.12", optional = true }
csv = { version = "1", optional = true }
rustyline = { version = "13", optional = true }
parking_lot_core = "0.9.10"
[dev-dependencies]
csv = { version = "1" }
env_logger = { version = "0.10" }
rand = "^0.8"
[features]
cli = ["ansi_term", "rustyline", "csv"]
default = []
[[bin]]
name = "cli"
required-features = ["cli"]