indivisible-rs/Cargo.toml

16 lines
394 B
TOML
Raw Permalink Normal View History

2021-02-26 17:58:58 +01:00
[package]
name = "indivisible"
2021-03-01 18:40:33 +01:00
version = "2.0.0"
authors = ["Nicolás Ortega Froysa <nicolas@ortegas.org>"]
2021-03-03 13:33:04 +01:00
description = "A prime number generator and tester"
2021-02-26 17:58:58 +01:00
edition = "2018"
2021-03-01 18:40:33 +01:00
readme = "README"
license = "GPL-3.0"
keywords = ["primes", "math"]
2021-02-26 17:58:58 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-03-02 17:22:31 +01:00
structopt = "0.3.13"
2022-03-04 15:22:48 +01:00
rayon = "1.5"