Skip to content

Commit

Permalink
fix the zeroize toml issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Jun 12, 2024
1 parent 379a174 commit 7e4375d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ tls_codec = { version = "0.4.2-pre.1", features = [
"derive",
"serde",
"mls",
], git = "https://github.com/nplasterer/formats", rev = "b91caee" }
], git = "https://github.com/nplasterer/formats", rev = "f1764ef5bc3fd028d899c8fc98b068cb047b4e1d" }
5 changes: 3 additions & 2 deletions basic_credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ repository = "https://github.com/openmls/openmls/tree/main/basic_credential"
readme = "README.md"

[dependencies]
zeroize = "1.8.1"
openmls_traits = { version = "0.2.0", path = "../traits" }
tls_codec = { workspace = true }
serde = "1.0"

# Rust Crypto
ed25519-dalek = { version = "2.0", features = ["rand_core"] }
ed25519-dalek = { version = "2.1.1", features = ["rand_core", "zeroize"] }
p256 = { version = "0.13" }
rand = "0.8"

[features]
clonable = [] # Make the keys clonable
test-utils = [] # Only use for tests!
test-utils = [] # Only use for tests!

0 comments on commit 7e4375d

Please sign in to comment.