1
0
mirror of https://github.com/NLnetLabs/routinator.git synced 2024-05-19 06:50:04 +00:00

94 lines
3.2 KiB
TOML
Raw Normal View History

2018-05-14 19:36:22 +02:00
[package]
# Note: some of these values are also used when building Debian packages below.
2018-07-27 14:33:51 +02:00
name = "routinator"
2021-05-25 12:29:53 +02:00
version = "0.9.0-dev"
2019-07-12 09:17:42 +02:00
edition = "2018"
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"
build = "build.rs"
2018-05-14 19:36:22 +02:00
[dependencies]
2021-01-06 12:54:55 +01:00
bytes = "1.0.0"
2020-04-07 13:24:34 +02:00
chrono = "0.4.11"
clap = "2.33.0"
2021-01-06 12:54:55 +01:00
crossbeam-queue = "0.3.1"
crossbeam-utils = "0.8.1"
dirs = "3.0.1"
2020-04-27 12:12:08 +02:00
fern = "0.6.0"
form_urlencoded = "1.0"
2020-04-07 13:24:34 +02:00
futures = "0.3.4"
# Pin hyper to 0.14.4 for compatibility with Rust 1.45.
hyper = { version = "=0.14.4", features = [ "server", "stream" ] }
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"
2021-01-06 12:54:55 +01:00
rand = "0.8.1"
reqwest = { version = "0.11.0", default-features = false, features = ["blocking", "gzip", "rustls-tls" ] }
2020-04-27 12:12:08 +02:00
ring = "0.16.12"
2021-05-17 14:17:02 +02:00
rpki = { version = "0.11.0", features = [ "repository", "rrdp", "rtr", "serde" ] }
2021-01-06 12:54:55 +01:00
serde = { version = "1.0.95", features = [ "derive" ] }
serde_json = "1.0.57"
sled = "0.34.6"
2020-04-07 13:24:34 +02:00
tempfile = "3.1.0"
2021-04-29 11:55:15 +02:00
tokio = { version = "1.0", features = [ "io-util", "macros", "process", "rt", "rt-multi-thread", "signal", "sync" ] }
2021-01-06 12:54:55 +01:00
tokio-stream = "0.1"
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-01-03 17:04:22 +01:00
[target.'cfg(unix)'.dependencies]
2021-05-17 14:17:02 +02:00
nix = "0.20.0"
2020-04-27 12:12:08 +02:00
syslog = "5.0.0"
2019-01-03 17:04:22 +01:00
[build-dependencies]
2021-05-17 14:17:02 +02:00
rustc_version = "0.3.3"
2019-03-27 12:35:55 +01:00
[features]
default = [ "socks", "ui"]
extra-debug = ["rpki/extra-debug"]
socks = [ "reqwest/socks" ]
2020-09-07 15:43:24 +02:00
rta = []
native-tls = [ "reqwest/native-tls", "tls" ]
tls = []
2021-01-25 12:19:43 +01:00
ui = []
2019-04-01 17:41:16 +02:00
2020-09-29 16:30:31 +02:00
[profile.release]
panic = "abort"
[package.metadata.deb]
name = "routinator"
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, adduser"
section = "net"
priority = "optional"
assets = [
["target/release/routinator", "usr/bin/", "755"],
2019-02-03 21:45:10 +01:00
["README.md", "usr/share/doc/routinator/", "644"],
["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"],
["etc/routinator.conf.system-service", "etc/routinator/routinator.conf", "644"],
2020-09-29 15:23:15 +02:00
["debian/service.preset", "/lib/systemd/system-preset/50-routinator.preset", "644"],
["debian/routinator-init", "usr/bin/", "755"]
]
maintainer-scripts = "debian"
changelog = "debian/changelog" # this will be generated by the pkg workflow
2020-12-09 11:55:21 +01:00
copyright = "Copyright (c) 2020, NLnet Labs. All rights reserved."
conf-files = ["/etc/routinator/routinator.conf"]
systemd-units = { unit-name = "routinator", enable = false }
[package.metadata.deb.variants.minimal]