diff --git a/Cargo.toml b/Cargo.toml index 811e7b2..377bb12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ exclude = [ ] [workspace.package] -version = "0.6.0" +version = "0.7.0" edition = "2024" authors = ["Frank Denis ", "Ralf Anton Beier "] license = "MIT" diff --git a/flake.nix b/flake.nix index a160da3..c17b829 100644 --- a/flake.nix +++ b/flake.nix @@ -71,7 +71,7 @@ packages.default = pkgs.rustPlatform.buildRustPackage { pname = "wsc"; - version = "0.6.0"; + version = "0.7.0"; src = ./.; cargoLock.lockFile = ./Cargo.lock; diff --git a/src/cli/Cargo.toml b/src/cli/Cargo.toml index 5d5a388..f72c7e0 100644 --- a/src/cli/Cargo.toml +++ b/src/cli/Cargo.toml @@ -32,5 +32,5 @@ regex = "1.12.2" # HTTP client for keyless signing ureq = { version = "3.1.2" } wasi = { version = "0.14.7" } -wsc = { version = "0.6.0", path = "../lib" } +wsc = { version = "0.7.0", path = "../lib" } serde_json = "1.0" diff --git a/src/component/Cargo.toml b/src/component/Cargo.toml index a18e884..4ceaa9b 100644 --- a/src/component/Cargo.toml +++ b/src/component/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib"] [dependencies] # Core signing library -wsc = { version = "0.6.0", path = "../lib" } +wsc = { version = "0.7.0", path = "../lib" } # WIT bindings generation wit-bindgen = { version = "0.47.0", default-features = false, features = ["realloc"] } diff --git a/src/crypto/Cargo.toml b/src/crypto/Cargo.toml index 3d106b8..8302cc2 100644 --- a/src/crypto/Cargo.toml +++ b/src/crypto/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib"] [dependencies] # Core signing library (provides platform module) -wsc = { version = "0.6.0", path = "../lib", features = ["software-keys"] } +wsc = { version = "0.7.0", path = "../lib", features = ["software-keys"] } # WIT bindings generation wit-bindgen = { version = "0.47.0", default-features = false, features = ["realloc"] } diff --git a/src/lib/Cargo.toml b/src/lib/Cargo.toml index 8355f5c..2481cb8 100644 --- a/src/lib/Cargo.toml +++ b/src/lib/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "wasm"] [dependencies] # Re-export attestation types from minimal crate -wsc-attestation = { version = "0.6.0", path = "../attestation" } +wsc-attestation = { version = "0.7.0", path = "../attestation" } anyhow = "1.0.100" ct-codecs = "1.1.6" ed25519-compact = { version = "2.1.1", features = ["pem"] }