diff --git a/Cargo.toml b/Cargo.toml index dc14c4d..7effba7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aes-gcm-stream" -version = "0.2.3" +version = "0.2.4" edition = "2021" authors = ["Hatter Jiang"] repository = "https://git.hatter.ink/hatter/aes-gcm-stream" @@ -12,12 +12,12 @@ categories = ["cryptography"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -aes = { version = "0.8.3", features = ["zeroize"] } -cipher = "0.4.4" -ghash = "0.5.0" -zeroize = { version = "1.6.0", features = ["zeroize_derive"] } +aes = { version = "0.8", features = ["zeroize"] } +cipher = "0.4" +ghash = "0.5" +zeroize = { version = "1.6", features = ["zeroize_derive"] } [dev-dependencies] -hex = "0.4.3" -benchmark-simple = "0.1.8" -aes-gcm = { version = "0.10.2", features = ["zeroize"] } +hex = "0.4" +benchmark-simple = "0.1" +aes-gcm = { version = "0.10", features = ["zeroize"] }