-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (59 loc) · 1.24 KB
/
Copy pathCargo.toml
File metadata and controls
64 lines (59 loc) · 1.24 KB
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
# SPDX-License-Identifier: MIT OR Apache-2.0
# Copyright (c) 2026 Richard Majewski - Varanid Works
[workspace]
resolver = "2"
members = [
"crates/cli",
"crates/config",
"crates/namespace",
"crates/manifest",
"crates/podman",
"crates/gc",
"crates/templates",
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/UglyEgg/podCI"
homepage = "https://github.com/UglyEgg/podCI"
[workspace.dependencies]
anyhow = "1"
blake3 = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
clap_mangen = "0.2"
etcetera = "0.11"
flate2 = { version = "1", default-features = false, features = [
"rust_backend",
] }
tar = "0.4"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "0.8"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"fmt",
"json",
] }
chrono = { version = "0.4", default-features = false, features = [
"clock",
"serde",
] }
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"process",
"time",
"fs",
"io-util",
"signal",
] }
# Used for robust PATH resolution on multiple distros.
which = "6"
[profile.release]
lto = true
codegen-units = 1
strip = true