Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = [
]

[workspace.package]
version = "0.6.0"
version = "0.7.0"
edition = "2024"
authors = ["Frank Denis <github@pureftpd.org>", "Ralf Anton Beier <ralf_beier@me.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

packages.default = pkgs.rustPlatform.buildRustPackage {
pname = "wsc";
version = "0.6.0";
version = "0.7.0";
src = ./.;

cargoLock.lockFile = ./Cargo.lock;
Expand Down
2 changes: 1 addition & 1 deletion src/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion src/component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion src/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
Loading