-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (40 loc) · 1.39 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
[package]
name = "fernglas"
description = "BGP & BMP looking glass"
version = "0.2.1"
edition = "2021"
default-run = "fernglas"
authors = [ "Yureka <yuka@yuka.dev>" ]
license = "EUPL-1.2"
repository = "https://github.com/wobcom/fernglas"
[dependencies]
anyhow = "1.0"
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 = { version = "0.3.4", git = "https://github.com/wladwm/zettabgp" }
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"] }
async-stream = "0.3.6"
rstest = { version = "0.24.0", default-features = false }
serde_with = "3.12.0"
[features]
embed-static = ["include_dir", "mime_guess"]