-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (35 loc) · 906 Bytes
/
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
[package]
name = "bacchus-sign"
description = "Pubkey signing agent for id.snucse.org"
authors = ["Wonwoo Choi <[email protected]>"]
license = "MIT"
version = "0.1.1"
edition = "2021"
[dependencies]
base64 = "0.13.0"
env_logger = "0.9.0"
libsystemd = "0.5.0"
log = "0.4.14"
syslog = "6.0.1"
thiserror = "1.0.26"
tweetnacl = "0.4.0"
[dependencies.clap]
version = "3.1.0"
default-features = false
features = ["std", "derive"]
[dependencies.getrandom]
version = "0.2.3"
features = ["std"]
[dependencies.tokio]
version = "1.11.0"
features = ["rt-multi-thread", "fs", "io-util", "net", "signal", "macros"]
[profile.release]
lto = true
debug = 1 # line information only
[package.metadata.deb]
maintainer = "Bacchus <[email protected]>"
section = "misc"
maintainer-scripts = "debian/scripts/"
[package.metadata.deb.systemd-units]
unit-scripts = "debian/units/"
stop-on-upgrade = false