2018-05-14 19:36:22 +02:00
|
|
|
[package]
|
2018-07-27 14:33:51 +02:00
|
|
|
name = "routinator"
|
2019-04-01 17:41:16 +02:00
|
|
|
version = "0.3.4"
|
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]
|
2018-07-27 12:52:11 +02:00
|
|
|
bytes = "^0.4"
|
2018-07-24 11:58:01 +02:00
|
|
|
chrono = "^0.4"
|
2019-02-14 14:51:40 +01:00
|
|
|
clap = "^2.0"
|
|
|
|
derive_more = "^0.14"
|
|
|
|
dirs = "^1.0"
|
2018-12-04 20:14:17 +01:00
|
|
|
fern = "^0.5"
|
2018-07-20 13:45:12 +02:00
|
|
|
futures = "^0.1"
|
|
|
|
futures-cpupool = "^0.1"
|
2019-02-12 13:38:07 +01:00
|
|
|
httparse = "^1.3"
|
2018-09-25 10:12:44 +02:00
|
|
|
json = "^0.11"
|
2018-07-20 13:45:12 +02:00
|
|
|
log = "^0.4"
|
2019-02-14 14:51:40 +01:00
|
|
|
num_cpus = "^1.0"
|
2019-05-06 19:12:27 +02:00
|
|
|
rpki = "^0.4.0"
|
2018-10-25 10:25:18 +02:00
|
|
|
slab = "^0.4"
|
2019-02-14 14:51:40 +01:00
|
|
|
tempfile = "^3.0"
|
2018-09-25 10:12:44 +02:00
|
|
|
tokio = "^0.1"
|
|
|
|
tokio-process = "^0.2"
|
2018-12-04 20:14:17 +01:00
|
|
|
toml = "^0.4"
|
2019-05-23 11:23:56 +02:00
|
|
|
unwrap = "^1.2.1"
|
2018-10-25 10:25:18 +02:00
|
|
|
|
2019-01-03 17:04:22 +01:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
daemonize = "^0.3"
|
2019-02-14 14:51:40 +01:00
|
|
|
syslog = "^4.0"
|
2019-01-03 17:04:22 +01:00
|
|
|
|
2019-04-01 15:25:01 +02:00
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "^0.2.3"
|
2019-03-27 12:35:55 +01:00
|
|
|
|
2019-05-06 19:12:27 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
extra-debug = [ "rpki/extra-debug" ]
|
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"
|
|
|
|
section = "rust"
|
|
|
|
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-02-03 21:13:09 +01:00
|
|
|
]
|
|
|
|
maintainer-scripts = "debian"
|
2019-05-06 19:12:27 +02:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
bcder = { git="https://github.com/NLnetLabs/bcder.git" }
|
2019-05-06 19:12:53 +02:00
|
|
|
rpki = { git="https://github.com/NLnetLabs/rpki-rs.git" }
|
2019-05-06 19:12:27 +02:00
|
|
|
|