-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 751 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 751 Bytes
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
34
35
36
37
38
[package]
name = "prime_factorization"
version = "1.0.5"
authors = ["Elmo Moilanen"]
edition = "2021"
license = "CC0-1.0"
description = "Prime factorization up to 128 bit integers."
keywords = ["prime-factorization", "modular-arithmetic", "elliptic-curves", "factorization"]
categories = ["mathematics"]
repository = "https://github.com/elmomoilanen/prime-factorization"
readme = "README.md"
documentation = "https://docs.rs/prime_factorization/"
exclude = [".github"]
[profile.dev]
opt-level = 3
overflow-checks = false
[profile.test]
opt-level = 3
overflow-checks = false
[profile.release]
opt-level = 3
[dependencies]
num = "0.4"
rand = "0.8"
itertools = "0.10"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false