forked from bgpkit/monocle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "monocle"
version = "0.4.0"
authors = ["Mingwei Zhang <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "MIT"
repository = "https://github.com/bgpkit/monocle"
documentation = "https://docs.rs/monocle"
description = """
A commandline application to search, parse, and process BGP information in public sources.
"""
keywords = ["bgp", "bgpkit", "mrt"]
[[bin]]
name = "monocle"
path = "src/monocle.rs"
[dependencies]
bgpkit-broker = "0.5.1"
bgpkit-parser = "0.8.1"
clap = { version = "4.1.6", features = ["derive"] }
itertools="0.10.3"
rayon = "1.5.1"
tracing = "0.1"
tracing-subscriber = "0.3"
ipnetwork = {version= "0.20.0", default-features=false}
serde={version="1.0", features=["derive"]}
serde_json = "1.0"
chrono = "0.4"
chrono-humanize = "0.2.1"
anyhow = "1.0"
tabled = "0.10.0"
config = {version = "0.13.1", features = ["toml"]}
dirs = "4"
rusqlite = { version = "0.28.0", features = ["bundled"] }
ureq = "2.6.2"
regex = "1.6.0"
oneio = "0.7.2"
rpki = {version="0.15.10", features = ["repository"]}
# progress bar
indicatif = "0.17.0"
[features]
scouter = []