# 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 = "2018" name = "primes" version = "0.4.0" authors = ["Wendell Smith "] description = """ A package for calculating primes using the Sieve of Eratosthenes, and using that to check if a number is prime and calculating factors. Includes an iterator over all primes. """ homepage = "https://github.com/wackywendell/primes/tree/master" documentation = "https://wackywendell.github.io/primes/" readme = "README.md" keywords = [ "math", "algorithms", ] license = "BSD-3-Clause" repository = "https://github.com/wackywendell/primes/tree/master" [lib] bench = false [[bench]] name = "benches" harness = false [dev-dependencies.criterion] version = "0.3.1"