# 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 = "ecm" version = "1.0.1" authors = ["skyf0l "] include = [ "benches/**/*", "src/**/*", "Cargo.toml", "LICENSE*", "README.md", ] description = "Lenstra's Elliptic Curve Factorization Implementation with Big Integers" readme = "README.md" keywords = [ "number-theory", "primes", "lenstra", "ECM", "bignum", ] categories = ["mathematics"] license = "MIT OR Apache-2.0" repository = "https://github.com/skyf0l/ecm-rs" [profile.bench] opt-level = 3 debug = 2 [profile.dev] opt-level = 3 [profile.test] opt-level = 3 [[bench]] name = "bench" harness = false [dependencies.indicatif] version = "0.17" optional = true [dependencies.primal] version = "0.3" [dependencies.rug] version = "1" features = [ "integer", "rand", ] default-features = false [dependencies.thiserror] version = "1" [dev-dependencies.criterion] version = "0.5" [features] default = [] progress-bar = ["indicatif"]