Skip to content
Draft
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
25 changes: 18 additions & 7 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ resolver = "2"

[workspace.dependencies]
# QuorumOS
qos_core = { git = "https://github.com/tkhq/qos.git", rev = "b86ad1b22f74263b22da65d88c18096e07841ad8", default-features = false }
qos_p256 = { git = "https://github.com/tkhq/qos.git", rev = "b86ad1b22f74263b22da65d88c18096e07841ad8", default-features = false }
qos_core = { git = "https://github.com/tkhq/qos.git", rev = "08dacd4c681fa68eeec70528015f1704f82b00db", default-features = false }
qos_hex = { git = "https://github.com/tkhq/qos.git", rev = "08dacd4c681fa68eeec70528015f1704f82b00db", default-features = false, features = ["serde"] }
qos_p256 = { git = "https://github.com/tkhq/qos.git", rev = "08dacd4c681fa68eeec70528015f1704f82b00db", default-features = false }

# Encoding and serialization
base64 = { version = "0.22.0", default-features = false, features = ["std"] }
bs58 = { version = "0.5.0", features = ["std", "check"], default-features = false }
hex = { version = "0.4.3", default-features = false, features = ["std"] }
hex = { version = "0.4.3", default-features = false, features = ["std", "serde"] }
serde = { version = "1.0.219", default-features = false, features = ["std", "derive"] }
serde_json = { version = "1.0.140", default-features = false, features = ["std"] }
serde_bytes = { version = "0.11", default-features = false }
Expand Down
3 changes: 1 addition & 2 deletions proofs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ attestation-doc-validation.workspace = true
aws-nitro-enclaves-nsm-api.workspace = true
aws-nitro-enclaves-cose.workspace = true
base64 = { version = "0.13", default-features = false }
borsh.workspace = true
ciborium.workspace = true
coset.workspace = true
p384.workspace = true
Expand All @@ -30,10 +29,10 @@ webpki.workspace = true
x509-cert.workspace = true
x509-parser.workspace = true
hex.workspace = true
qos_hex.workspace = true
turnkey_client.workspace = true
turnkey_api_key_stamper.workspace = true

[dev-dependencies]
hex.workspace = true
hex-literal.workspace = true
rand.workspace = true
Loading
Loading