Skip to content

Commit

Permalink
chore: Make sigstore an optional dep
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed Aug 25, 2024
1 parent 43dd4ef commit 54c35a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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 }
sigstore = { version = "0.9", 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"] }

Expand All @@ -51,7 +51,7 @@ blue-build-utils = { version = "=0.8.14", path = "../utils", features = ["test"]
workspace = true

[features]
sigstore = ["dep:tokio"]
sigstore = ["dep:tokio", "dep:sigstore"]

[patch.crates-io]
sigstore = { git = "https://github.com/gmpinder/sigstore-rs.git", rev = "3a804bff" }

0 comments on commit 54c35a8

Please sign in to comment.