-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
108 lines (78 loc) · 2.2 KB
/
Cargo.toml
File metadata and controls
108 lines (78 loc) · 2.2 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[package]
name = "rust-atcoder"
version = "0.1.0"
authors = ["Redaction-F <koebijakobiteorhang@gmail.com>"]
edition = "2018"
[[bin]]
name = "main"
path = "src/main.rs"
[dependencies]
# 数値型の抽象化、多倍長整数、複素数、分数、及び整数型の拡張
#num = "=0.2.1"
#num-bigint = "=0.2.6"
#num-complex = "=0.2.4"
#num-integer = "=0.1.42"
#num-iter = "=0.1.40"
#num-rational = "=0.2.4"
#num-traits = "=0.2.11"
# `num-traits`の自動実装
#num-derive = "=0.3.0"
# NumPyの`ndarray`のような多次元配列
#ndarray = "=0.13.0"
# 線形代数
#nalgebra = "=0.20.0"
# (線形)代数の抽象化
#alga = "=0.9.3"
# libmのRust実装
#libm = "=0.2.1"
# 乱数
#rand = { version = "=0.7.3", features = ["small_rng"] }
#getrandom = "=0.1.14"
#rand_chacha = "=0.2.2"
#rand_core = "=0.5.1"
#rand_hc = "=0.2.0"
#rand_pcg = "=0.2.1"
# 乱数の分布の追加
#rand_distr = "=0.2.2"
# グラフ
#petgraph = "=0.5.0"
# 挿入順を保持するhash table
#indexmap = "=1.3.2"
# 正規表現
#regex = "=1.3.6"
# staticアイテムの遅延初期化
#lazy_static = "=1.4.0"
# `NotNan<f64>`, `OrderedFloat<f64>`
#ordered-float = "=1.0.2"
# ASCII文字列
#ascii = "=1.0.0"
# permutation
#permutohedron = "=0.2.4"
# スライスの拡張
#superslice = "=1.0.0"
# イテレータの拡張
#itertools = "=0.9.0"
# イテレータの拡張(一次元累積和と浮動小数点数の等差数列)
#itertools-num = "=0.1.3"
# `BTreeMap`, `BTreeSet`, `HashMap`, `HashSet`のリテラル用マクロ
#maplit = "=1.0.2"
# 即席enum `Either<L, R>`
#either = "=1.5.3"
# `BTreeMap`, `BTreeSet`, `HashMap`, `HashSet`, `Vec`の永続データ構造版
#im-rc = "=14.3.0"
# 可変長bit set
#fixedbitset = "=0.2.0"
# 可変長bit set
#bitset-fixed = "=0.1.0"
# 競技プログラミングの入出力サポートその1
proconio = { version = "=0.3.6", features = ["derive"] }
# 競技プログラミングの入出力サポートその2
#text_io = "=0.1.8"
# 競技プログラミングの入出力サポートその3
#whiteread = "=0.5.0"
# 高速なハッシュ関数
#rustc-hash = "=1.1.0"
# ある長さまでは要素を「直に」持つ可変長配列
#smallvec = "=1.2.0"
[dev-dependencies]
cli_test_dir = "0.1"