# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "csidh" version = "0.5.0" authors = ["Titouan Real "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of the CSIDH cryptographic algorithm for secret key exchange. Provides a no_std-friendly implementation. Not constant-time yet.""" documentation = "https://docs.rs/csidh" readme = "README.md" keywords = [ "crypto", "elliptic-curve", "isogeny", "csidh", "quantum", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/TitouanReal/csidh" [lib] name = "csidh" path = "src/lib.rs" [[bench]] name = "callgrind" path = "benches/callgrind.rs" harness = false [[bench]] name = "public_key_time" path = "benches/public_key_time.rs" harness = false [[bench]] name = "shared_secret_time" path = "benches/shared_secret_time.rs" harness = false [dependencies.crypto-bigint] version = "=0.6.0-rc.2" features = ["rand_core"] default-features = false [dev-dependencies.criterion] version = "0.5" [dev-dependencies.iai-callgrind] version = "0.13" [dev-dependencies.rand] version = "0.8"