-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
40 lines (38 loc) · 1.26 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
[package]
name = "fernglas"
description = "BGP & BMP looking glass"
version = "0.2.1"
edition = "2021"
default-run = "fernglas"
authors = [ "Yureka <[email protected]>" ]
license = "EUPL-1.2"
repository = "https://github.com/wobcom/fernglas"
[dependencies]
anyhow = "1.0"
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.7", default-features = false, features = ["query", "http1", "tokio"] }
bitvec = "1.0"
bytes = "1.5"
env_logger = "0.11"
futures-util = "0.3"
ipnet = { version = "2.9", features = ["serde"] }
log = "0.4"
mimalloc = { version = "0.1", optional = true }
rayon = "1.8"
regex = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.36", features = ["macros", "time", "rt-multi-thread", "io-util", "signal"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["codec"] }
weak-table = "0.3"
nibbletree = { version = "0.2", path = "./nibbletree", features = ["ipnet"] }
autometrics = { version = "0.3", features = ["prometheus-exporter"] }
zettabgp = "0.3.4"
hickory-resolver = "0.24"
include_dir = { version = "0.7", optional = true }
mime_guess = { version = "2.0", optional = true }
figment = { version = "0.10", features = ["yaml", "env"] }
[features]
embed-static = ["include_dir", "mime_guess"]