-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 1.04 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
[package]
name = "helm2oci"
version = "0.1.1"
edition = "2021"
license = "MIT"
publish = true
documentation = "https://github.com/microsoft/helm2oci/blob/main/README.md"
homepage = "https://github.com/microsoft/helm2oci"
repository = "https://github.com/microsoft/helm2oci"
description = "A tool to convert Helm charts tarfiles into OCI layout"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
argh = "0.1.12"
flate2 = { version = "1.0.35", features = ["zlib"], default-features = false }
ocidir = "0.2.1"
serde_json = "1.0.133"
serde_yml = "0.0.12"
tar = "0.4.43"
[dev-dependencies]
test-temp-dir = "0.2.2"
testcontainers = { version = "0.23.1", features = ["blocking"] }
testcontainers-modules = { version = "0.11.4", features = ["cncf_distribution"] }
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/helm2oci", dest = "/usr/bin/helm2oci", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/helm2oci/LICENSE", doc = true, mode = "0644" },
]