Skip to content
Open
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
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.4.1"
version = "0.5.0"
edition = "2024"
authors = ["Frank Denis <github@pureftpd.org>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ regex = "1.12.2"
# HTTP client for keyless signing
ureq = { version = "3.1.2" }
wasi = { version = "0.14.7" }
wsc = { version = "0.4.1", path = "../lib" }
wsc = { version = "0.5.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.4.0", path = "../lib" }
wsc = { version = "0.5.0", path = "../lib" }

# WIT bindings generation
wit-bindgen = { version = "0.47.0", default-features = false, features = ["realloc"] }
19 changes: 9 additions & 10 deletions 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.4.1", path = "../attestation" }
wsc-attestation = { version = "0.5.0", path = "../attestation" }
anyhow = "1.0.100"
ct-codecs = "1.1.6"
ed25519-compact = { version = "2.1.1", features = ["pem"] }
Expand Down Expand Up @@ -68,12 +68,11 @@ wat = "1.221"
default = ["software-keys"]
# Software-based key storage (always available, for development/testing)
software-keys = []
# Hardware security backends (embedded/production)
tpm2 = [] # TPM 2.0 support - will add tpm2-tss dependency
secure-element = [] # Generic secure element support
atecc608 = ["secure-element"] # Microchip ATECC608 (I2C)
se050 = ["secure-element"] # NXP SE050 EdgeLock (I2C/SPI)
trustzone = [] # ARM TrustZone / OP-TEE support
sgx = [] # Intel SGX support
# Alternative serialization formats (future feature)
cbor = [] # CBOR serialization support
# Hardware security backends (planned - traits available, implementations pending)
tpm2 = [] # TPM 2.0 support (planned)
secure-element = [] # Generic secure element support (planned)
se050 = ["secure-element"] # NXP SE050 EdgeLock (planned)
trustzone = [] # ARM TrustZone / OP-TEE support (planned)
sgx = [] # Intel SGX support (planned)
# Alternative serialization formats (planned)
cbor = [] # CBOR serialization support (planned)
Loading
Loading