2018-05-14 19:36:22 +02:00
|
|
|
[package]
|
2018-07-27 14:33:51 +02:00
|
|
|
name = "routinator"
|
2020-06-15 13:15:02 +02:00
|
|
|
version = "0.7.1-bis"
|
2019-07-12 09:17:42 +02:00
|
|
|
edition = "2018"
|
2018-09-12 14:37:28 +02:00
|
|
|
authors = ["The NLnet Labs RPKI Team <rpki@nlnetlabs.nl>"]
|
2018-11-01 11:22:42 +01:00
|
|
|
description = "An RPKI relying party software."
|
|
|
|
repository = "https://github.com/NLnetLabs/routinator"
|
|
|
|
keywords = ["rpki", "routing-security", "bgp"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
license = "BSD-3-Clause"
|
2018-11-05 15:35:06 +01:00
|
|
|
readme = "README.md"
|
2019-04-01 15:25:01 +02:00
|
|
|
build = "build.rs"
|
2018-05-14 19:36:22 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2020-04-07 13:24:34 +02:00
|
|
|
bytes = "0.5.4"
|
|
|
|
chrono = "0.4.11"
|
|
|
|
clap = "2.33.0"
|
|
|
|
crossbeam-queue = "0.2.1"
|
|
|
|
crossbeam-utils = "0.7.2"
|
|
|
|
dirs = "2.0.2"
|
2020-04-27 12:12:08 +02:00
|
|
|
fern = "0.6.0"
|
2020-04-07 13:24:34 +02:00
|
|
|
futures = "0.3.4"
|
2020-04-27 12:12:08 +02:00
|
|
|
hyper = "0.13.4"
|
|
|
|
json = "0.12.4"
|
|
|
|
listenfd = "0.3.3"
|
2020-04-07 13:24:34 +02:00
|
|
|
log = "0.4.8"
|
2020-04-27 12:12:08 +02:00
|
|
|
log-reroute = "0.1.5"
|
2020-04-07 13:24:34 +02:00
|
|
|
num_cpus = "1.12.0"
|
|
|
|
rand = "0.7.3"
|
2020-04-27 12:12:08 +02:00
|
|
|
reqwest = { version = "0.10.4", default-features = false, features = ["blocking"] }
|
|
|
|
ring = "0.16.12"
|
2020-06-09 13:47:09 +02:00
|
|
|
rpki = "0.9.2"
|
2020-04-29 10:42:45 +02:00
|
|
|
rpki-rtr = "0.1.1"
|
2020-04-07 13:24:34 +02:00
|
|
|
slab = "0.4.2"
|
|
|
|
tempfile = "3.1.0"
|
2020-06-08 18:08:30 +02:00
|
|
|
tokio = { version = "0.2.21", features = [ "io-util", "macros", "rt-threaded", "signal", "sync" ] }
|
2020-04-07 13:24:34 +02:00
|
|
|
toml = "0.5.6"
|
|
|
|
uuid = "0.8.1"
|
2018-10-25 10:25:18 +02:00
|
|
|
|
2019-11-28 11:50:05 +01:00
|
|
|
|
2019-01-03 17:04:22 +01:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-04-27 12:12:08 +02:00
|
|
|
daemonize = "0.4.1"
|
|
|
|
libc = "0.2.68"
|
|
|
|
syslog = "5.0.0"
|
2019-01-03 17:04:22 +01:00
|
|
|
|
2019-04-01 15:25:01 +02:00
|
|
|
[build-dependencies]
|
2020-04-07 13:24:34 +02:00
|
|
|
rustc_version = "0.2.3"
|
2019-03-27 12:35:55 +01:00
|
|
|
|
2019-05-06 19:12:27 +02:00
|
|
|
[features]
|
2020-01-17 15:30:25 +01:00
|
|
|
default = ["rustls-tls", "socks"]
|
2019-05-06 19:12:27 +02:00
|
|
|
extra-debug = [ "rpki/extra-debug" ]
|
2019-12-20 10:04:05 +01:00
|
|
|
socks = [ "reqwest/socks" ]
|
2020-01-28 14:10:48 +01:00
|
|
|
native-tls = [ "reqwest/default-tls", "tls" ]
|
2019-12-20 10:04:05 +01:00
|
|
|
rustls-tls = [ "reqwest/rustls-tls", "tls" ]
|
|
|
|
tls = []
|
2019-04-01 17:41:16 +02:00
|
|
|
|
2019-02-03 21:13:09 +01:00
|
|
|
[package.metadata.deb]
|
|
|
|
maintainer = "The NLnet Labs RPKI Team <rpki@nlnetlabs.nl>"
|
|
|
|
license-file = ["LICENSE", "0"]
|
|
|
|
extended-description = """\
|
|
|
|
The Resource Public Key Infrastructure provides cryptographically signed \
|
|
|
|
statements about the association of Internet routing resources. \
|
|
|
|
In particular, it allows the holder of an IP address prefix to publish which \
|
|
|
|
AS number will be the origin of BGP route announcements for it. \
|
|
|
|
Routinator is a RPKI relying party software written in Rust. """
|
|
|
|
depends = "$auto, rsync"
|
2020-06-29 20:32:41 +02:00
|
|
|
section = "net"
|
2019-02-03 21:13:09 +01:00
|
|
|
priority = "optional"
|
|
|
|
assets = [
|
|
|
|
["target/release/routinator", "usr/bin/", "755"],
|
2019-02-03 21:45:10 +01:00
|
|
|
["README.md", "usr/share/doc/routinator/", "644"],
|
2019-02-04 12:15:53 +01:00
|
|
|
["doc/misc.md", "usr/share/doc/routinator/misc.md", "644"],
|
2019-02-04 12:11:39 +01:00
|
|
|
["doc/routinator.1", "usr/share/man/man1/routinator.1", "644"],
|
2019-07-15 12:08:18 +02:00
|
|
|
["etc/routinator.service", "lib/systemd/system/routinator.service", "644"],
|
|
|
|
["etc/routinator.conf.system-service", "etc/routinator/routinator.conf", "644"]
|
2019-02-03 21:13:09 +01:00
|
|
|
]
|
|
|
|
maintainer-scripts = "debian"
|
2020-06-29 20:32:41 +02:00
|
|
|
conf-files = [
|
|
|
|
"etc/routinator/routinator.conf"
|
|
|
|
]
|
2019-05-06 19:12:27 +02:00
|
|
|
|
2019-07-15 12:08:18 +02:00
|
|
|
[package.metadata.deb.variants.minimal]
|
|
|
|
assets = [
|
|
|
|
["target/release/routinator", "usr/bin/", "755"],
|
|
|
|
["README.md", "usr/share/doc/routinator/", "644"],
|
|
|
|
["doc/misc.md", "usr/share/doc/routinator/misc.md", "644"],
|
|
|
|
["doc/routinator.1", "usr/share/man/man1/routinator.1", "644"],
|
|
|
|
["etc/routinator.service.minimal", "lib/systemd/system/routinator.service", "644"],
|
|
|
|
["etc/routinator.conf.system-service", "etc/routinator/routinator.conf", "644"]
|
|
|
|
]
|