forked from wackywendell/primes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (25 loc) · 896 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "primes"
version = "0.4.0"
authors = ["Wendell Smith <[email protected]>"]
license="BSD-3-Clause"
edition = "2018"
keywords = ["math", "algorithms"]
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.
"""
readme = "README.md"
documentation = "https://wackywendell.github.io/primes/"
homepage = "https://github.com/wackywendell/primes/tree/master"
repository = "https://github.com/wackywendell/primes/tree/master"
[lib]
# Disable benches in the normal library, we don't need them
# Without disabling this, running cargo bench -- --something-else gets somehow passed to both
# the cargo bench binary and the compiled benches binary
bench = false
[dev-dependencies]
criterion = "0.3.1"
[[bench]]
name = "benches"
harness = false