mirror of
https://github.com/saymrwulf/betrusted-curve25519-dalek-source.git
synced 2026-09-12 21:40:32 +00:00
cargo: use consistent package rev for engine25519-as
Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
parent
859eb04005
commit
93538aab36
1 changed files with 23 additions and 19 deletions
26
Cargo.toml
26
Cargo.toml
|
|
@ -5,8 +5,10 @@ name = "curve25519-dalek"
|
||||||
# - update html_root_url
|
# - update html_root_url
|
||||||
# - update README if required by semver
|
# - update README if required by semver
|
||||||
version = "3.1.0"
|
version = "3.1.0"
|
||||||
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
|
authors = [
|
||||||
"Henry de Valence <hdevalence@hdevalence.ca>"]
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
|
"Henry de Valence <hdevalence@hdevalence.ca>",
|
||||||
|
]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
repository = "https://github.com/dalek-cryptography/curve25519-dalek"
|
repository = "https://github.com/dalek-cryptography/curve25519-dalek"
|
||||||
|
|
@ -15,11 +17,7 @@ documentation = "https://docs.rs/curve25519-dalek"
|
||||||
categories = ["cryptography", "no-std"]
|
categories = ["cryptography", "no-std"]
|
||||||
keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"]
|
keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"]
|
||||||
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519"
|
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519"
|
||||||
exclude = [
|
exclude = ["**/.gitignore", ".gitignore", ".travis.yml"]
|
||||||
"**/.gitignore",
|
|
||||||
".gitignore",
|
|
||||||
".travis.yml",
|
|
||||||
]
|
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302
|
# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302
|
||||||
|
|
@ -42,13 +40,19 @@ harness = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rand_core = { version = "0.5", default-features = false }
|
rand_core = { version = "0.5", default-features = false }
|
||||||
byteorder = { version = "^1.2.3", default-features = false, features = ["i128"] }
|
byteorder = { version = "^1.2.3", default-features = false, features = [
|
||||||
|
"i128",
|
||||||
|
] }
|
||||||
digest = { version = "0.9", default-features = false }
|
digest = { version = "0.9", default-features = false }
|
||||||
subtle = { version = "^2.2.1", default-features = false }
|
subtle = { version = "^2.2.1", default-features = false }
|
||||||
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
|
serde = { version = "1.0", default-features = false, optional = true, features = [
|
||||||
|
"derive",
|
||||||
|
] }
|
||||||
# The original packed_simd package was orphaned, see
|
# The original packed_simd package was orphaned, see
|
||||||
# https://github.com/rust-lang/packed_simd/issues/303#issuecomment-701361161
|
# https://github.com/rust-lang/packed_simd/issues/303#issuecomment-701361161
|
||||||
packed_simd = { version = "0.3.4", package = "packed_simd_2", features = ["into_bits"], optional = true }
|
packed_simd = { version = "0.3.4", package = "packed_simd_2", features = [
|
||||||
|
"into_bits",
|
||||||
|
], optional = true }
|
||||||
zeroize = { version = "1", default-features = false }
|
zeroize = { version = "1", default-features = false }
|
||||||
fiat-crypto = { version = "0.1.6", optional = true }
|
fiat-crypto = { version = "0.1.6", optional = true }
|
||||||
|
|
||||||
|
|
@ -66,7 +70,7 @@ optional = true
|
||||||
|
|
||||||
[dependencies.engine25519-as]
|
[dependencies.engine25519-as]
|
||||||
git = "https://github.com/betrusted-io/engine25519-as.git"
|
git = "https://github.com/betrusted-io/engine25519-as.git"
|
||||||
rev="6681e73c1fdc4a460b5ef9f9c7c91aef546d00f3"
|
rev = "274b82899d28535ac6d4b7869e26eef2039578d5"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = []
|
features = []
|
||||||
optional = true
|
optional = true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue