-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
73 lines (61 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
[package]
name = "krill-sync"
version = "0.3.0-dev"
license = "BSD-3-Clause"
edition = "2018"
authors = ["NLnet Labs <[email protected]>"]
description = "A tool to synchronize an RRDP and/or Rsync server with a remote RFC 8182 RRDP publication point."
repository = "https://github.com/NLnetLabs/krill-sync"
keywords = ["rpki", "routing-security", "bgp"]
readme = "README.md"
[dependencies]
anyhow = "1.0.32"
base64 = "0.12.3"
bytes = "1.0"
chrono = "0.4.23"
fern = "0.6.0"
filetime = "0.2"
fslock = "0.2.1"
log = "0.4.11"
reqwest = { version = "0.12.7", features = ["native-tls", "blocking"] }
rpki = { version = "0.18.4", features = ["ca", "rrdp"] }
serde = { version = "1.0.116", features = ["derive", "rc"] }
serde_json = "1.0.57"
structopt = { version = "0.3.18", default-features = false }
uuid = { version = "1.2.2", features = ["serde"] }
[features]
default = ["reqwest/native-tls"]
static-tls = ["reqwest/native-tls-vendored"]
# ------------------------------------------------------------------------------
# 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 = "krill-sync"
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) 2021, NLnet Labs. All rights reserved."
assets = [["target/release/krill-sync", "/usr/bin/krill-sync", "755"]]
# List target variants
[package.metadata.deb.variants.ubuntu-xenial]
[package.metadata.deb.variants.ubuntu-bionic]
[package.metadata.deb.variants.ubuntu-focal]
[package.metadata.deb.variants.debian-stretch]
[package.metadata.deb.variants.debian-buster]
[package.metadata.deb.variants.debian-bullseye]
# END DEBIAN PACKAGING
# ------------------------------------------------------------------------------