Skip to content

Commit

Permalink
chore: bump sp1 version (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwen01 authored Oct 29, 2024
1 parent 1bca654 commit 7cd307f
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ name = "curve25519-dalek"
# - update README if required by semver
# - if README was updated, also update module documentation in src/lib.rs
version = "3.2.0"
authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>"]
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>",
"Henry de Valence <hdevalence@hdevalence.ca>",
]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/dalek-cryptography/curve25519-dalek"
Expand All @@ -16,27 +18,25 @@ documentation = "https://docs.rs/curve25519-dalek"
categories = ["cryptography", "no-std"]
keywords = ["cryptography", "crypto", "ristretto", "curve25519", "ristretto255"]
description = "A pure-Rust implementation of group operations on ristretto255 and Curve25519"
exclude = [
"**/.gitignore",
".gitignore",
".travis.yml",
]
exclude = ["**/.gitignore", ".gitignore", ".travis.yml"]

[package.metadata.docs.rs]
# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302
# rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"]
features = ["nightly", "simd_backend"]

[badges]
travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"}
travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master" }

[dev-dependencies]
sha2 = { version = "0.9", default-features = false }
bincode = "1"
criterion = "0.3.0"
hex = "0.4.2"
rand = "0.8"
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
rand_core = { version = "0.6", default-features = false, features = [
"getrandom",
] }

[[bench]]
name = "dalek_benchmarks"
Expand All @@ -46,18 +46,24 @@ required-features = ["alloc", "rand_core"]
[dependencies]
cfg-if = "1"
rand_core = { version = "0.6.4", default-features = false, optional = true }
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 }
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
# 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 }
fiat-crypto = { version = "0.1.6", optional = true}
fiat-crypto = { version = "0.1.6", optional = true }

[target.'cfg(all(target_os = "zkvm", target_vendor = "succinct"))'.dependencies]
sp1-lib = "2.0.0"
sp1-lib = "3.0.0"
anyhow = "1.0"

[features]
Expand Down

0 comments on commit 7cd307f

Please sign in to comment.