-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
77 lines (71 loc) · 1.9 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
74
75
76
77
[package]
name = "zincati"
version = "0.0.29"
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 = "2021"
rust-version = "1.75.0"
[dependencies]
actix = "0.13"
anyhow = "1.0"
cfg-if = "1.0"
chrono = { version = "0.4.37", features = ["serde"] }
clap = { version = "4.4", features = ["cargo", "derive"] }
coreos-stream-metadata = "0.1.0"
env_logger = "0.11"
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.1.0"
libsystemd = "0.7"
log = "0.4"
maplit = "1.0"
num-traits = "0.2"
once_cell = "1.19.0"
ordered-float = { version = "4.2", features = ["serde"] }
prometheus = { version = "0.13", default-features = false }
rand = "0.8"
regex = "1.10"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = ">= 3.7, < 4.0"
thiserror = "1.0"
tokio = { version = "1.39", features = ["signal", "rt", "rt-multi-thread"] }
toml = "0.5"
tzfile = "0.1.3"
url = { version = "2.5", features = ["serde"] }
users = "0.11.0"
zbus = "3"
[dev-dependencies]
http = "0.2"
mockito = "1.5"
proptest = "1.4"
tempfile = ">= 3.7, < 4.0"
[features]
failpoints = [ "fail/failpoints" ]
[profile.release]
# 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}}"
# See https://github.com/coreos/cargo-vendor-filterer
[package.metadata.vendor-filter]
platforms = ["*-unknown-linux-gnu"]
tier = "2"
all-features = true