-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from flavio/fix-http-registry-interactions
fix: http registry interactions
- Loading branch information
Showing
5 changed files
with
366 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[formatting] | ||
align_entries = true | ||
reorder_arrays = true | ||
reorder_keys = true | ||
sort_keys = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,61 @@ | ||
[package] | ||
name = "policy-fetcher" | ||
version = "0.9.0" | ||
authors = [ | ||
"Kubewarden Developers <kubewarden@suse.de>", | ||
"Fabrizio Sestito <fabrizio.sestito@suse.com>", | ||
"Flavio Castelli <fcastelli@suse.com>", | ||
"Kubewarden Developers <kubewarden@suse.de>", | ||
"Rafael Fernández López <rfernandezlopez@suse.com>", | ||
"Víctor Cuadrado Juan <vcuadradojuan@suse.de>", | ||
"Fabrizio Sestito <fabrizio.sestito@suse.com>", | ||
] | ||
edition = "2021" | ||
name = "policy-fetcher" | ||
version = "0.10.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
async-trait = "0.1" | ||
base64 = "0.22" | ||
cfg-if = "1.0" | ||
directories = "6.0" | ||
docker_credential = "1.2" | ||
futures = "0.3" | ||
lazy_static = "1.4" | ||
oci-client = { version = "0.14", default-features = false, features = [ | ||
"rustls-tls", | ||
] } | ||
path-slash = "0.2" | ||
rayon = "1.5" | ||
regex = "1.5" | ||
reqwest = { version = "0.12", default-features = false, features = [ | ||
"rustls-tls", | ||
] } | ||
rustls = { version = "0.23", default-features = false, features = [ | ||
"std", | ||
"ring", | ||
"std", | ||
"tls12", | ||
] } | ||
rustls-pki-types = "1.0.1" # stick to the same version used by sigstore | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_bytes = "0.11" | ||
serde_json = "1.0" | ||
serde_yaml = "0.9" | ||
serde_bytes = "0.11" | ||
sha2 = "0.10" | ||
sigstore = { version = "0.11.0", default-features = false, features = [ | ||
"sigstore-trust-root-rustls-tls", | ||
"cosign-rustls-tls", | ||
"cached-client", | ||
"cosign-rustls-tls", | ||
"sigstore-trust-root-rustls-tls", | ||
] } | ||
thiserror = "2.0" | ||
tokio = { version = "1", default-features = false } | ||
tracing = "0.1" | ||
url = { version = "2.2", features = ["serde"] } | ||
walkdir = "2.5" | ||
rayon = "1.5" | ||
docker_credential = "1.2" | ||
tokio = { version = "1", default-features = false } | ||
cfg-if = "1.0" | ||
x509-parser = "0.17" | ||
|
||
[dev-dependencies] | ||
rstest = "0.24" | ||
tempfile = "3.2" | ||
textwrap = "0.16" | ||
anyhow = "1.0" | ||
rcgen = "0.13" | ||
rstest = "0.24" | ||
tempfile = "3.2" | ||
testcontainers = { version = "0.23", features = ["http_wait"] } | ||
anyhow = "1.0" | ||
textwrap = "0.16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.