2018-05-14 19:36:22 +02:00
|
|
|
|
[package]
|
2020-09-09 15:03:30 +02:00
|
|
|
|
# Note: some of these values are also used when building Debian packages below.
|
2018-07-27 14:33:51 +02:00
|
|
|
|
name = "routinator"
|
2022-11-10 13:13:54 +01:00
|
|
|
|
version = "0.12.1-dev"
|
2022-08-08 16:56:22 +02:00
|
|
|
|
edition = "2021"
|
2022-10-03 16:04:14 +02:00
|
|
|
|
rust-version = "1.60"
|
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"
|
2022-03-31 12:35:27 +02:00
|
|
|
|
exclude = [ ".github" ]
|
2018-05-14 19:36:22 +02:00
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-07 16:15:56 +01:00
|
|
|
|
base64 = "0.13.0"
|
2021-01-06 12:54:55 +01:00
|
|
|
|
bytes = "1.0.0"
|
2020-04-07 13:24:34 +02:00
|
|
|
|
chrono = "0.4.11"
|
2022-10-10 10:20:59 +02:00
|
|
|
|
clap = { version = "4", features = [ "wrap_help", "cargo", "derive" ] }
|
2021-01-06 12:54:55 +01:00
|
|
|
|
crossbeam-queue = "0.3.1"
|
|
|
|
|
crossbeam-utils = "0.8.1"
|
2022-04-04 14:15:31 +02:00
|
|
|
|
dirs = "4.0.0"
|
2020-04-27 12:12:08 +02:00
|
|
|
|
fern = "0.6.0"
|
2021-04-12 12:21:33 +02:00
|
|
|
|
form_urlencoded = "1.0"
|
2020-04-07 13:24:34 +02:00
|
|
|
|
futures = "0.3.4"
|
2021-05-27 11:09:40 +02:00
|
|
|
|
hyper = { version = "0.14", features = [ "server", "stream" ] }
|
2022-11-02 14:25:25 +01:00
|
|
|
|
listenfd = "1"
|
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"
|
2022-01-13 17:32:55 +01:00
|
|
|
|
pin-project-lite = "0.2.4"
|
2021-01-06 12:54:55 +01:00
|
|
|
|
rand = "0.8.1"
|
2021-11-09 15:44:23 +01:00
|
|
|
|
reqwest = { version = "0.11.0", default-features = false, features = ["blocking", "rustls-tls" ] }
|
2020-04-27 12:12:08 +02:00
|
|
|
|
ring = "0.16.12"
|
2022-08-09 15:47:09 +02:00
|
|
|
|
routecore = "0.2"
|
|
|
|
|
rpki = { version = "0.15", features = [ "repository", "rrdp", "rtr", "serde", "slurm" ] }
|
2022-11-02 14:25:25 +01:00
|
|
|
|
rustls-pemfile = "1"
|
2021-01-06 12:54:55 +01:00
|
|
|
|
serde = { version = "1.0.95", features = [ "derive" ] }
|
2020-09-25 12:45:56 +02:00
|
|
|
|
serde_json = "1.0.57"
|
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" ] }
|
2022-01-13 17:32:55 +01:00
|
|
|
|
tokio-rustls = "0.23.2"
|
|
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2020-04-07 13:24:34 +02:00
|
|
|
|
toml = "0.5.6"
|
2022-08-09 15:47:09 +02:00
|
|
|
|
uuid = "1.1"
|
2021-09-15 14:58:40 +02:00
|
|
|
|
routinator-ui = { version = "0.3.4", optional = true }
|
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]
|
2022-11-02 14:25:25 +01:00
|
|
|
|
nix = "0.25"
|
|
|
|
|
syslog = "6"
|
2019-01-03 17:04:22 +01:00
|
|
|
|
|
2019-05-06 19:12:27 +02:00
|
|
|
|
[features]
|
2021-04-08 09:59:06 +02:00
|
|
|
|
default = [ "socks", "ui"]
|
2019-12-20 10:04:05 +01:00
|
|
|
|
socks = [ "reqwest/socks" ]
|
2020-09-07 15:43:24 +02:00
|
|
|
|
rta = []
|
2020-09-29 11:19:55 +02:00
|
|
|
|
native-tls = [ "reqwest/native-tls", "tls" ]
|
2019-12-20 10:04:05 +01:00
|
|
|
|
tls = []
|
2021-09-13 11:18:31 +02:00
|
|
|
|
ui = [ "routinator-ui" ]
|
2019-04-01 17:41:16 +02:00
|
|
|
|
|
2020-09-29 16:30:31 +02:00
|
|
|
|
[profile.release]
|
|
|
|
|
panic = "abort"
|
|
|
|
|
|
2022-04-04 11:00:42 +02:00
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
# Building the UI breaks docs.rs, so let’s not.
|
|
|
|
|
no-default-features = true
|
|
|
|
|
features = [ "socks" ]
|
|
|
|
|
|
2019-02-03 21:13:09 +01:00
|
|
|
|
[package.metadata.deb]
|
2020-09-09 15:03:30 +02:00
|
|
|
|
name = "routinator"
|
2019-02-03 21:13:09 +01:00
|
|
|
|
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. """
|
2021-05-31 14:46:22 +02:00
|
|
|
|
# ensure that the useradd and rsync tools are present by installing their respective packages
|
|
|
|
|
depends = "$auto, passwd, 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:11:39 +01:00
|
|
|
|
["doc/routinator.1", "usr/share/man/man1/routinator.1", "644"],
|
2022-11-02 11:44:16 +01:00
|
|
|
|
["etc/routinator.conf.system-service", "etc/routinator/routinator.conf", "644"]
|
2019-02-03 21:13:09 +01:00
|
|
|
|
]
|
2021-05-31 14:46:22 +02:00
|
|
|
|
maintainer-scripts = "pkg/debian"
|
|
|
|
|
changelog = "target/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."
|
2020-09-09 15:03:30 +02:00
|
|
|
|
conf-files = ["/etc/routinator/routinator.conf"]
|
2022-11-02 11:44:16 +01:00
|
|
|
|
systemd-units = { unit-name = "routinator", unit-scripts = "pkg/common", enable = true }
|
2019-05-06 19:12:27 +02:00
|
|
|
|
|
2019-07-15 12:08:18 +02:00
|
|
|
|
[package.metadata.deb.variants.minimal]
|
2021-05-31 14:46:22 +02:00
|
|
|
|
|
|
|
|
|
[package.metadata.generate-rpm]
|
|
|
|
|
# "BSD" alone is the 3-clause license. Inheriting "license" from above causes rpmlint to
|
|
|
|
|
# complain with "invalid-license".
|
|
|
|
|
# See: https://fedoraproject.org/wiki/Licensing:Main?rd=Licensing
|
|
|
|
|
license = "BSD"
|
|
|
|
|
assets = [
|
|
|
|
|
{ source = "target/release/routinator", dest = "/usr/bin/routinator", mode = "755" },
|
|
|
|
|
{ source = "target/rpm/routinator.service", dest = "/lib/systemd/system/routinator.service", mode = "644" },
|
|
|
|
|
{ source = "doc/routinator.1", dest = "/usr/share/man/man1/routinator.1", mode = "644", doc = true },
|
2022-11-02 11:44:16 +01:00
|
|
|
|
{ source = "etc/routinator.conf.system-service", dest = "/etc/routinator/routinator.conf", mode = "644", config = true }
|
2021-05-31 14:46:22 +02:00
|
|
|
|
]
|
2022-09-15 13:01:17 +02:00
|
|
|
|
# These get set using cargo-generate-rpm --set-metadata at package build time.
|
|
|
|
|
#post_install_script = ...
|
|
|
|
|
#pre_uninstall_script = ...
|
|
|
|
|
#post_uninstall_script = ...
|
2021-05-31 14:46:22 +02:00
|
|
|
|
|
|
|
|
|
# ensure that the useradd and rsync tools are present by installing their respective packages
|
|
|
|
|
[package.metadata.generate-rpm.requires]
|
|
|
|
|
shadow-utils = "*"
|
|
|
|
|
rsync = "*"
|
2022-04-04 11:00:42 +02:00
|
|
|
|
|