chore: update dependencies
This commit is contained in:
parent
835142d432
commit
e6bf497500
1 changed files with 10 additions and 8 deletions
18
Cargo.toml
18
Cargo.toml
|
@ -1,14 +1,16 @@
|
||||||
[package]
|
[package]
|
||||||
name = "miden-crypto"
|
name = "miden-crypto"
|
||||||
version = "0.1.3"
|
version = "0.1.3"
|
||||||
description="Miden Cryptographic primitives"
|
description = "Miden Cryptographic primitives"
|
||||||
authors = ["miden contributors"]
|
authors = ["miden contributors"]
|
||||||
readme="README.md"
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/0xPolygonMiden/crypto"
|
repository = "https://github.com/0xPolygonMiden/crypto"
|
||||||
|
documentation = "https://docs.rs/miden-crypto/0.1.3"
|
||||||
categories = ["cryptography", "no-std"]
|
categories = ["cryptography", "no-std"]
|
||||||
keywords = ["miden", "crypto", "hash", "merkle"]
|
keywords = ["miden", "crypto", "hash", "merkle"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
rust-version = "1.67"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "hash"
|
name = "hash"
|
||||||
|
@ -23,12 +25,12 @@ default = ["blake3/default", "std", "winter_crypto/default", "winter_math/defaul
|
||||||
std = ["blake3/std", "winter_crypto/std", "winter_math/std", "winter_utils/std"]
|
std = ["blake3/std", "winter_crypto/std", "winter_math/std", "winter_utils/std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
blake3 = { version = "1.0", default-features = false }
|
blake3 = { version = "1.3", default-features = false }
|
||||||
winter_crypto = { version = "0.5.1", package = "winter-crypto", default-features = false }
|
winter_crypto = { version = "0.5", package = "winter-crypto", default-features = false }
|
||||||
winter_math = { version = "0.5.1", package = "winter-math", default-features = false }
|
winter_math = { version = "0.5", package = "winter-math", default-features = false }
|
||||||
winter_utils = { version = "0.5.1", package = "winter-utils", default-features = false }
|
winter_utils = { version = "0.5", package = "winter-utils", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = { version = "0.4", features = ["html_reports"] }
|
criterion = { version = "0.4", features = ["html_reports"] }
|
||||||
proptest = "1.0.0"
|
proptest = "1.1.0"
|
||||||
rand_utils = { version = "0.4", package = "winter-rand-utils" }
|
rand_utils = { version = "0.5", package = "winter-rand-utils" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue