diff --git a/Cargo.lock b/Cargo.lock index 08b94ac..a28d604 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,9 +464,9 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "cached" -version = "0.52.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8466736fe5dbcaf8b8ee24f9bbefe43c884dc3e9ff7178da70f55bffca1133c" +checksum = "b4d73155ae6b28cf5de4cfc29aeb02b8a1c6dab883cb015d15cd514e42766846" dependencies = [ "ahash 0.8.11", "async-trait", @@ -474,17 +474,17 @@ dependencies = [ "cached_proc_macro_types", "futures", "hashbrown 0.14.5", - "instant", "once_cell", "thiserror", "tokio", + "web-time", ] [[package]] name = "cached_proc_macro" -version = "0.22.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "575f32e012222055211b70f5b0601f951f84523410a0e65c81f2744a6042450d" +checksum = "2f42a145ed2d10dce2191e1dcf30cfccfea9026660e143662ba5eec4017d5daa" dependencies = [ "darling", "proc-macro2", @@ -3937,8 +3937,9 @@ dependencies = [ [[package]] name = "sigstore" -version = "0.9.0" -source = "git+https://github.com/gmpinder/sigstore-rs.git?rev=cd0d10429fc09ddb08a8d1c7244a1623772113af#cd0d10429fc09ddb08a8d1c7244a1623772113af" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d91d4a47a41b1bd378a6be69cbe32fc5473be6dfe900afed7a833b6c556142b" dependencies = [ "async-trait", "base64 0.22.1", @@ -3968,6 +3969,7 @@ dependencies = [ "pkcs8", "rand 0.8.5", "regex", + "reqwest 0.11.27", "reqwest 0.12.5", "ring", "rsa", @@ -4472,9 +4474,9 @@ dependencies = [ [[package]] name = "tough" -version = "0.17.1" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8d7a87d51ca5a113542e1b9f5ee2b14b6864bf7f34d103740086fa9c3d57d3b" +checksum = "0a11e87698820a64152f36682e12017944619631d1a4881aaad532cbd843d5dc" dependencies = [ "async-recursion", "async-trait", @@ -4591,9 +4593,9 @@ dependencies = [ [[package]] name = "typed-path" -version = "0.7.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "668404597c2c687647f6f8934f97c280fd500db28557f52b07c56b92d3dc500a" +checksum = "04645b6c01cfb2ddabffc7c67ae6bfe7c3e28a5c37d729f6bb498e784f1fd70c" [[package]] name = "typemap-ors" @@ -4899,6 +4901,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + [[package]] name = "webbrowser" version = "1.0.1" diff --git a/Cargo.toml b/Cargo.toml index d71a10f..07964fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,3 @@ codegen-units = 1 strip = "none" debug = false panic = "abort" - -[patch.crates-io] -# sigstore = { path = "../../sigstore-rs/" } -sigstore = { git = "https://github.com/gmpinder/sigstore-rs.git", rev = "cd0d10429fc09ddb08a8d1c7244a1623772113af" } diff --git a/process/Cargo.toml b/process/Cargo.toml index d540e6a..69f0534 100644 --- a/process/Cargo.toml +++ b/process/Cargo.toml @@ -24,7 +24,7 @@ os_pipe = { version = "1", features = ["io_safety"] } rand = "0.8" semver = { version = "1", features = ["serde"] } signal-hook = { version = "0.3", features = ["extended-siginfo"] } -sigstore = { version = "0.9", features = ["full-rustls-tls", "cached-client", "sigstore-trust-root", "sign"], default-features = false, optional = true } +sigstore = { version = "0.10", features = ["full-rustls-tls", "cached-client", "sigstore-trust-root", "sign"], default-features = false, optional = true } tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread"], optional = true } zeroize = { version = "1", features = ["aarch64", "derive", "serde"] }