# 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" name = "lambdaworks-crypto" version = "0.11.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Data structures and primitives for cryptography library" readme = "README.md" license = "Apache-2.0" [lib] name = "lambdaworks_crypto" path = "src/lib.rs" [[bench]] name = "criterion_merkle" path = "benches/criterion_merkle.rs" harness = false [[bench]] name = "criterion_pedersen" path = "benches/criterion_pedersen.rs" harness = false [[bench]] name = "criterion_poseidon" path = "benches/criterion_poseidon.rs" harness = false [[bench]] name = "iai_merkle" path = "benches/iai_merkle.rs" harness = false [dependencies.lambdaworks-math] version = "0.11.0" features = ["alloc"] default-features = false [dependencies.rayon] version = "1.8.0" optional = true [dependencies.serde] version = "1.0" features = [ "derive", "alloc", ] optional = true default-features = false [dependencies.sha2] version = "0.10" default-features = false [dependencies.sha3] version = "0.10" default-features = false [dev-dependencies.criterion] version = "0.4" [dev-dependencies.iai-callgrind] version = "0.3.1" [dev-dependencies.rand] version = "0.8.5" [dev-dependencies.rand_chacha] version = "0.3.1" [features] alloc = [] asm = ["sha3/asm"] default = [ "asm", "std", ] parallel = ["dep:rayon"] serde = ["dep:serde"] std = [ "lambdaworks-math/std", "sha2/std", "sha3/std", "serde?/std", ] test_fiat_shamir = []