1
0
mirror of https://github.com/NLnetLabs/rtrtr.git synced 2024-05-11 05:55:07 +00:00
nlnetlabs-rtrtr/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Normal View History

2020-02-10 13:54:54 +01:00
[package]
name = "rtrtr"
2020-12-11 11:31:40 +01:00
version = "0.1.2-dev"
2020-02-10 13:54:54 +01:00
edition = "2018"
authors = ["The NLnet Labs RPKI Team <rpki-team@nlnetlabs.nl>"]
2020-11-06 13:43:19 +01:00
description = "A versatile tool for managing route filters"
2020-02-10 13:54:54 +01:00
repository = "https://github.com/NLnetLabs/rtrtr"
keywords = ["rpki", "routing-security", "bgp"]
license = "BSD-3-Clause"
readme = "README.md"
[dependencies]
2020-11-30 11:54:44 +01:00
arc-swap = "1.0"
2020-07-16 17:19:08 +02:00
chrono = "0.4.11"
clap = "2.33"
2020-11-05 11:08:57 +01:00
crossbeam-utils = "0.7.2"
2020-07-16 17:19:08 +02:00
fern = "0.6.0"
futures = "0.3"
2020-11-05 11:08:57 +01:00
hyper = "0.13.4"
2020-07-16 17:19:08 +02:00
log = "0.4"
log-reroute = "0.1.5"
rand = "0.7.3"
2020-12-11 11:18:10 +01:00
reqwest = { version = "0.10.9", default-features = false, features = ["blocking", "rustls-tls"] }
2020-11-05 11:14:48 +01:00
rpki-rtr = "0.2.0"
2020-11-30 11:54:44 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2020-07-16 17:19:08 +02:00
slab = "0.4.2"
simple-logging = "2.0.2"
tokio = { version="0.2", features=["dns", "io-util", "macros", "rt-core", "rt-threaded", "stream", "sync", "tcp", "time"]}
toml = "0.5.6"
2020-11-30 11:54:44 +01:00
url = { version = "2.2", features = ["serde"] }
2020-07-16 17:19:08 +02:00
[target.'cfg(unix)'.dependencies]
libc = "0.2.68"
syslog = "5.0.0"
2020-07-20 17:29:44 +02:00
[profile.release]
panic = "abort"