forked from coreos/zincati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (64 loc) · 1.62 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
[package]
name = "zincati"
version = "0.0.24"
description = "Update agent for Fedora CoreOS"
homepage = "https://coreos.github.io/zincati"
license = "Apache-2.0"
keywords = ["cincinnati", "coreos", "fedora", "rpm-ostree"]
authors = ["Luca Bruno <[email protected]>"]
repository = "https://github.com/coreos/zincati"
edition = "2018"
[dependencies]
actix = "0.13"
anyhow = "1.0"
cfg-if = "1.0"
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.9"
envsubst = "0.2"
fail = "0.5"
filetime = "0.2"
fn-error-context = "0.2"
futures = "0.3"
glob = "0.3"
intervaltree = "0.2.7"
lazy_static = "1.4"
libc = "0.2"
liboverdrop = "0.0.2"
libsystemd = "0.5"
log = "0.4"
maplit = "1.0"
num-traits = "0.2"
ordered-float = { version = "3.0", features = ["serde"] }
prometheus = { version = "0.13", default-features = false }
rand = "0.8"
regex = "1.5"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
tempfile = "^3.2"
thiserror = "1.0"
tokio = { version = "1.19", features = ["signal", "rt", "rt-multi-thread"] }
toml = "0.5"
tzfile = "0.1.3"
url = { version = "2.2", features = ["serde"] }
users = "0.11.0"
zbus = "2"
[dev-dependencies]
http = "0.2"
mockito = "0.31"
proptest = "1.0"
tempfile = "^3.2"
[features]
failpoints = [ "fail/failpoints" ]
[profile.release]
lto = true
# We assume we're being delivered via e.g. RPM which supports split debuginfo
debug = true
[package.metadata.release]
publish = false
push = false
pre-release-commit-message = "cargo: zincati release {{version}}"
sign-commit = true
sign-tag = true
tag-message = "zincati {{version}}"