# 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 = "rust-clacc" version = "3.6.0" authors = ["John Driscoll "] description = "Rust implementanion of a CL universal accumulator" documentation = "https://docs.rs/rust-clacc" readme = "README.md" keywords = [ "crypto", "cryptography", "accumulator", "gmp", ] categories = [ "algorithms", "cryptography", "data-structures", "embedded", ] license = "MIT" repository = "https://github.com/johnoliverdriscoll/rust-clacc" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "clacc" path = "src/lib.rs" [[bench]] name = "bench" path = "src/bench.rs" harness = false [dependencies.num-bigint] version = "0.4.4" optional = true [dependencies.num-integer] version = "0.1.45" optional = true [dependencies.num-modular] version = "0.5.1" optional = true [dependencies.rust-gmp] version = "0.5.0" optional = true [dependencies.sha3] version = "0.10.8" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.crossbeam] version = "0.8.2" [dev-dependencies.num-prime] version = "0.4.3" [dev-dependencies.num_cpus] version = "1.16.0" [dev-dependencies.rand] version = "0.8.5" [features] bigint = [ "dep:num-bigint", "dep:num-integer", "dep:num-modular", "num-modular/num-bigint", ] default = ["bigint"] gmp = ["dep:rust-gmp"]