Skip to content

Commit

Permalink
cipher: bump inout to v0.2.0-rc.1 (#1679)
Browse files Browse the repository at this point in the history
Notably this version removes the `std` feature, a breaking change from
the previous `rc.0`
  • Loading branch information
tarcieri authored Sep 30, 2024
1 parent a981f42 commit 78662ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = "0.2.0-rc.1"
inout = "0.2.0-rc.0"
inout = "0.2.0-rc.1"

# optional dependencies
blobby = { version = "0.3", optional = true }
zeroize = { version = "1.8", optional = true, default-features = false }

[features]
alloc = []
std = ["alloc", "crypto-common/std", "inout/std"]
std = ["alloc", "crypto-common/std"]
block-padding = ["inout/block-padding"]
# Enable random key and IV generation methods
rand_core = ["crypto-common/rand_core"]
Expand Down

0 comments on commit 78662ae

Please sign in to comment.