-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
64 lines (53 loc) · 1.84 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "rrdpit"
version = "0.0.4"
authors = ["The NLnet Labs RPKI Team <[email protected]>"]
description = "RRDP IT: A disk to RPKI Delta Protocol tool."
repository = "https://github.com/NLnetLabs/rrdpit"
keywords = ["rpki", "routing-security", "bgp"]
categories = ["command-line-utilities"]
edition = "2021"
license = "BSD-3-Clause"
readme = "README.md"
[dependencies]
base64 = "^0.10"
bytes = "^0.4"
clap = { version = "^4.5.26", features = ["cargo"] }
derive_more = "^0.13"
hex = "^0.3"
ring = "^0.17"
uuid = { version = "^0.7", features = ["v4"] }
xml-rs = "0.8.25"
# ------------------------------------------------------------------------------
# START DEBIAN PACKAGING
#
# Configurations for the cargo-deb cargo plugin which builds Debian packages in
# target/debian/ when invoked with: cargo deb.
#
# TODO:
# - Build packages with GH Actions
# - Add man page?
# - Add changelog
#
# NOTE:
# - There is a single binary only (no daemon yet)
[package.metadata.deb]
name = "rrdpit"
priority = "optional"
section = "net"
extended-description-file = "pkg/debian/description.txt"
license-file = ["LICENSE", "0"]
depends = ""
maintainer-scripts = "pkg/debian/"
changelog = "target/debian/changelog" # this will be generated by the pkg workflow
copyright = "Copyright (c) 2025, NLnet Labs. All rights reserved."
assets = [["target/release/rrdpit", "/usr/bin/rrdpit", "755"]]
# List target variants
[package.metadata.deb.variants.ubuntu-focal]
[package.metadata.deb.variants.ubuntu-jammy]
[package.metadata.deb.variants.ubuntu-noble]
[package.metadata.deb.variants.debian-buster]
[package.metadata.deb.variants.debian-bullseye]
[package.metadata.deb.variants.debian-bookworm]
# END DEBIAN PACKAGING
# ------------------------------------------------------------------------------