mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Avoid over-specific version specifiers.
By default, Cargo treats version specifiers as semver-compatible ranges, so the version specifiers we include should only have the components that are actually meaningful, e.g., "1" instead of "1.0.0" (which actually means "1").
This commit is contained in:
parent
a79459a1c8
commit
018fccfe8c
1 changed files with 4 additions and 4 deletions
|
|
@ -26,7 +26,7 @@ features = ["nightly", "simd_backend"]
|
|||
travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"}
|
||||
|
||||
[dev-dependencies]
|
||||
rand_os = "0.1.0"
|
||||
rand_os = "0.1"
|
||||
sha2 = { version = "0.8", default-features = false }
|
||||
bincode = "1"
|
||||
criterion = "0.2"
|
||||
|
|
@ -37,13 +37,13 @@ name = "dalek_benchmarks"
|
|||
harness = false
|
||||
|
||||
[dependencies]
|
||||
rand_core = { version = "0.3.0", default-features = false }
|
||||
rand_core = { version = "0.3", default-features = false }
|
||||
byteorder = { version = "^1.2.3", default-features = false, features = ["i128"] }
|
||||
digest = { version = "0.8", default-features = false }
|
||||
subtle = { version = "2", default-features = false }
|
||||
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
|
||||
packed_simd = { version = "0.3.0", features = ["into_bits"], optional = true }
|
||||
zeroize = { version = "1.0.0", default-features = false }
|
||||
packed_simd = { version = "0.3", features = ["into_bits"], optional = true }
|
||||
zeroize = { version = "1", default-features = false }
|
||||
|
||||
[features]
|
||||
nightly = ["subtle/nightly"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue