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
177 changes: 161 additions & 16 deletions Cargo.lock

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

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ members = [
"examples",
# Contains utilities to work with Turnkey proofs (boot proofs, app proofs)
"proofs",
# Crate to simulate stamps with WebAuthn credentials
"webauthn_stamper",
]
resolver = "2"

Expand Down Expand Up @@ -79,6 +81,12 @@ walkdir = { version = "2.5", default-features = false }
# Environment and configuration
dotenvy = { version = "0.15.0", default-features = false }

# Webauthn stamper
passkey-authenticator = "0.4"
passkey-client = "0.4"
passkey-types = "0.4"
url = "2.5.7"

# Development dependencies
tempfile = { version = "3.19.1", default-features = false }
signature = "2"
Expand All @@ -92,3 +100,4 @@ turnkey_api_key_stamper = { path = "api_key_stamper", version = "0.5.0" }
turnkey_client = { path = "client", version = "0.5.0" }
turnkey_enclave_encrypt = { path = "enclave_encrypt", version = "0.5.0" }
turnkey_proofs = { path = "proofs", version = "0.5.0" }
turnkey_webauthn_stamper = { path = "webauthn_stamper", version = "0.1.0" }
4 changes: 4 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ description = "Examples using the Turnkey Rust SDK"
publish = false

[dependencies]
coset.workspace = true
dotenvy.workspace = true
hex.workspace = true
passkey-types.workspace = true
reqwest.workspace = true
serde_json.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand All @@ -17,3 +19,5 @@ turnkey_api_key_stamper.workspace = true
turnkey_enclave_encrypt.workspace = true
turnkey_client.workspace = true
turnkey_proofs.workspace = true
turnkey_webauthn_stamper.workspace = true
url.workspace = true
Loading
Loading