mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
* Vendor import unsafe_target_features as curve25519-dalek-derive Co-authored-by: Jan Bujak <jan@parity.io> * Remove feature gates from avx2/ifma * Add buildtime compile diagnostics about backend selection * Add build script tests * Documentation changes * Disable simd related features unless simd was determined via build * Add note and test about the override warning when unsuccesful * Reduce complexity in build gating via compile_error --------- Co-authored-by: Jan Bujak <jan@parity.io> Co-authored-by: Michael Rosenberg <michael@mrosenberg.pub>
19 lines
494 B
TOML
19 lines
494 B
TOML
[package]
|
|
name = "curve25519-dalek-derive"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/dalek-cryptography/curve25519-dalek"
|
|
homepage = "https://github.com/dalek-cryptography/curve25519-dalek"
|
|
documentation = "https://docs.rs/curve25519-dalek-derive"
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
description = "curve25519-dalek Derives"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.53"
|
|
quote = "1.0.26"
|
|
syn = { version = "2.0.8", features = ["full"] }
|