-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (46 loc) · 1.3 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
[package]
name = "containeryard"
description = "Container Yard is a declarative, reproducible, and reusable decentralized approach for defining containers. Think Nix flakes meets Containerfiles (aka Dockerfiles)."
authors = ["Henry McMahon"]
license = "Apache-2.0"
version = "0.3.2"
edition = "2021"
repository = "https://github.com/mcmah309/containeryard"
rust-version = "1.80"
[[bin]]
name = "yard"
path = "src/main.rs"
[dependencies]
anyhow = "1"
const_format = "0.2"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
jsonschema = "0.26"
dirs = "5"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
duct_sh = "0.13"
futures = "0.3"
regex = "1"
tera = "1"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[profile.dist]
inherits = "release"
lto = true
strip = true
codegen-units = 1
[package.metadata.deb]
maintainer = "Dillon Henry McMahon <[email protected]>"
copyright = "2024, Dillon Henry McMahon <[email protected]>"
extended-description = """Container Yard is a declarative, reproducible, and reusable decentralized approach for defining containers."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/yard", "usr/bin/", "755"],
]