refactor: Create SigningDriver and CiDriver (#197)
This also includes a new `login` command. The signing and CI logic is now using the Driver trait system along with a new experimental sigstore signing driver. New static macros have also been created to make implementation management easier for `Command` usage and `Driver` trait implementation calls. --------- Co-authored-by: xyny <60004820+xynydev@users.noreply.github.com>
This commit is contained in:
parent
3ecb0d3d93
commit
8ce83ba7ff
63 changed files with 6468 additions and 2083 deletions
50
process/Cargo.toml
Normal file
50
process/Cargo.toml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
[package]
|
||||
name = "blue-build-process-management"
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
repository.workspace = true
|
||||
license.workspace = true
|
||||
categories.workspace = true
|
||||
version.workspace = true
|
||||
|
||||
[lib]
|
||||
path = "process.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
blue-build-recipe = { version = "=0.8.12", path = "../recipe" }
|
||||
blue-build-utils = { version = "=0.8.12", path = "../utils" }
|
||||
expect-exit = "0.5"
|
||||
indicatif-log-bridge = "0.2"
|
||||
lenient_semver = "0.4"
|
||||
log4rs = { version = "1", features = ["background_rotation"] }
|
||||
nu-ansi-term = { version = "0.50", features = ["gnu_legacy"] }
|
||||
nix = { version = "0.29", features = ["signal"] }
|
||||
once_cell = "1"
|
||||
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 }
|
||||
tokio = { version = "1.39.2", features = ["rt", "rt-multi-thread"], optional = true }
|
||||
zeroize = { version = "1", features = ["aarch64", "derive", "serde"] }
|
||||
|
||||
chrono.workspace = true
|
||||
clap = { workspace = true, features = ["derive", "env"] }
|
||||
colored.workspace = true
|
||||
indicatif.workspace = true
|
||||
indexmap.workspace = true
|
||||
log.workspace = true
|
||||
miette.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
tempdir.workspace = true
|
||||
typed-builder.workspace = true
|
||||
users.workspace = true
|
||||
uuid.workspace = true
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
[features]
|
||||
sigstore = ["dep:tokio"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue