-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (36 loc) · 1.23 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
[package]
name = "bgpexplorer"
version = "0.3.4"
authors = ["Vladimir Melnikov <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/wladwm/bgpexplorer"
keywords = ["BGP","monitoring"]
categories = ["network-programming","web-programming"]
description = "This is a BGP route explorer for routing information database with ability to drill-down routes change history"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zettabgp = { version = "0.3.4", features = ["serde"] }
tokio = { version = "1.24.1", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["full"] }
hyper = { version = "0.14.27", features = ["full"] }
websocket-codec = "0.5.2"
futures = "0.3.25"
futures-util = "0.3.25"
chrono = "0.4.23"
ini = { version = "1.3.0"}
async-trait = "0.1.61"
html-escape = "0.2.13"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
lazy_static = "1.4.0"
regex = "1.7.1"
url = "2.3.1"
sled = "0.34.7"
dnssector = { version="0.2.12" }
whois-rust = { version = "1.5.1", features= ["tokio"] }
ciborium = { version = "0.2.0" }
ciborium-io = "0.2.0"
log = "0.4.17"
pretty_env_logger = "0.5.0"