Skip to content

Commit

Permalink
Add Cargo.{toml, lock} changes for CTX-like constructions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlee287 committed Oct 22, 2023
1 parent 3cc50a8 commit 6e57855
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Cargo.lock

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

7 changes: 6 additions & 1 deletion aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ arrayvec = { version = "0.7", optional = true, default-features = false }
blobby = { version = "0.3", optional = true }
bytes = { version = "1", optional = true, default-features = false }
heapless = { version = "0.7", optional = true, default-features = false }
# Dependencies needed for committing_ae
subtle = { version = "2.5", optional = true, default-features = false }
# Keep digest at 0.10.x instead of 0.11.0-pre for now
# Avoids depending on multiple versions of crypto-common
digest = { version = "0.10.7", optional = true, features = ["mac"] }
hmac = { version = "0.12.1", optional = true }

[features]
default = ["rand_core"]
Expand All @@ -34,7 +39,7 @@ dev = ["blobby"]
getrandom = ["crypto-common/getrandom", "rand_core"]
rand_core = ["crypto-common/rand_core"]
stream = []
committing_ae = ["subtle"]
committing_ae = ["subtle", "digest", "hmac"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 6e57855

Please sign in to comment.