-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
60 lines (50 loc) · 1.29 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
[package]
authors = ["gifnksm <makoto.nksm+github@gmail.com>"]
description = "Solving Project Euler with Rust lang."
keywords = ["algebra", "algorithms", "computation", "mathematics", "numerics"]
license = "MIT"
name = "ProjectEulerRust"
readme = "README.md"
repository = "https://github.com/gifnksm/ProjectEulerRust"
version = "0.0.1"
edition = "2018"
default-run = "euler"
[lib]
name = "common"
path = "src/common.rs"
[dependencies]
generic-matrix = "0.2.2"
getopts = "0.2.21"
glob = "0.3.1"
itertools = "0.13.0"
num-bigint = { version = "0.4.6", default-features = false }
num-integer = "0.1.46"
num-iter = "0.1.45"
num-rational = { version = "0.4.2", default-features = false }
num-traits = "0.2.19"
polynomial = "0.2.6"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
term = "1.0.0"
topological-sort = "0.2.2"
union-find = "0.4.3"
derive-try-from-primitive = "1.0.0"
pretty_env_logger = "0.5.0"
attohttpc = "0.28.0"
thiserror = "1.0.64"
[dependencies.cont_frac]
path = "./pkg/cont_frac"
[dependencies.integer]
path = "./pkg/integer"
features = ["bigint"]
[dependencies.iter]
path = "./pkg/iter"
[dependencies.playing_card]
path = "./pkg/playing_card"
[dependencies.prime]
path = "./pkg/prime"
[dependencies.seq]
path = "./pkg/seq"
[dev-dependencies]
rand = "0.8.5"