-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
29 lines (24 loc) · 874 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
[package]
name = "num-primes"
version = "0.3.0"
authors = ["AtropineTears"]
edition = "2018"
description = "A Rust Library For Generating Large Prime and Composite Numbers using num with a simplistic interface."
keywords = ["random","primes","bigint","num","math"]
categories = ["cryptography", "science","algorithms"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/AtropineTears/num-primes"
repository = "https://github.com/AtropineTears/num-primes"
[badges]
travis-ci = { repository = "AtropineTears/num-primes", branch = "master" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# num
num = { version = "0.4.0", default-features = false }
num-traits = "0.2.11"
num-bigint = { version = "0.2.6", features = ["rand"] }
# random
rand = "0.5.6"
# Logging
log = "0.4.14"