# 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.56" name = "prime-factor" version = "0.5.1" authors = ["Stefan Lindblad "] description = "A prime number factorizer written in Rust" readme = "README.md" license = "LGPL-2.1-or-later" repository = "https://github.com/Fairglow/prime-factor.git" [profile.release] lto = true codegen-units = 1 [lib] name = "primefactor" path = "src/lib.rs" [[bin]] name = "prime-factor" path = "src/main.rs" [[bench]] name = "prime-factor-benchmark" path = "benches/benchmark.rs" harness = false [dependencies.clap] version = "4.4" [dependencies.env_logger] version = "0.11" [dependencies.genawaiter] version = "0.99" [dependencies.log] version = "0.4" [dependencies.num] version = "0.4.1" [dependencies.rayon] version = "1.8" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.rand] version = "0.8" features = ["small_rng"] [dev-dependencies.reikna] version = "0.12"