-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
51 lines (46 loc) · 1.38 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
[package]
name = "monocle"
version = "0.6.2"
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/bin/monocle.rs"
[dependencies]
bgpkit-broker = "0.7.5"
bgpkit-parser = { version = "0.10.11", features = ["serde"] }
oneio = { version = "0.17.0", default-features = false, features = ["remote", "gz", "bz"] }
clap = { version = "4.1", features = ["derive"] }
itertools = "0.13.0"
rayon = "1.8"
tracing = "0.1"
tracing-subscriber = "0.3"
ipnet = { version = "2.10", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4"
chrono-humanize = "0.2"
anyhow = "1.0"
json_to_table = "0.9.0"
tabled = "0.17.0"
config = { version = "0.13", features = ["toml"] }
dirs = "5"
rusqlite = { version = "0.31", features = ["bundled"] }
ureq = { version = "2.9", features = ["json"] }
regex = "1.10"
rpki = { version = "0.16.1", features = ["repository"] }
radar-rs = "0.1.0"
dotenvy = "0.15"
# progress bar
indicatif = "0.17.0"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.tar.gz"
pkg-fmt = "tgz"