-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
57 lines (54 loc) · 1.45 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
[package]
name = "policy-fetcher"
version = "0.8.12"
authors = [
"Kubewarden Developers <kubewarden@suse.de>",
"Flavio Castelli <fcastelli@suse.com>",
"Rafael Fernández López <rfernandezlopez@suse.com>",
"Víctor Cuadrado Juan <vcuadradojuan@suse.de>",
]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
base64 = "0.22"
directories = "5.0"
lazy_static = "1.4"
oci-client = { version = "0.14", default-features = false, features = [
"rustls-tls",
] }
path-slash = "0.2"
pem = "3"
regex = "1.5"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
rustls = { version = "0.23", default-features = false, features = [
"std",
"ring",
"tls12",
] }
rustls-pki-types = "1.0.1" # stick to the same version used by sigstore
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
sha2 = "0.10"
sigstore = { version = "0.10", default-features = false, features = [
"sigstore-trust-root-rustls-tls",
"cosign-rustls-tls",
"cached-client",
] }
thiserror = "2.0"
tracing = "0.1"
url = { version = "2.2", features = ["serde"] }
walkdir = "2"
rayon = "1.5"
docker_credential = "1.2"
tokio = { version = "1", default-features = false }
cfg-if = "1.0"
[dev-dependencies]
rstest = "0.23"
tempfile = "3.2"
textwrap = "0.16"
testcontainers = { version = "0.23", features = ["http_wait"] }
anyhow = "1.0.83"