Skip to content

Also make the "assorted" crates available #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 60 additions & 49 deletions Cargo.lock
24 changes: 18 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -21,9 +21,14 @@ default = ["jemalloc"]

# 多バイト長整数、分数、複素数など
num = "=0.2.0"
num-bigint = "=0.2.3"
num-complex = "=0.2.3"
num-integer = "=0.1.41"
num-iter = "=0.1.39"
num-rational = "=0.2.2"
num-traits = "=0.2.10"
# `num-traits`用のderive macros
num-derive = "=0.3.0"
# num-derive が依存するため必要
num-traits = "=0.2.9"

# 多次元配列
ndarray = "=0.13.0"
@@ -33,22 +38,29 @@ nalgebra = "=0.19.0"
alga = "=0.9.2"

# libmのRust実装
libm = "=0.2.0"
libm = "=0.2.1"

# RNG 疑似乱数生成器 (randファミリー)
rand = { version = "=0.7.2", features = ["small_rng"] }
getrandom = "=0.1.13"
rand_chacha = "=0.2.1"
rand_core = "=0.5.1"
rand_hc = "=0.2.0"
rand_pcg = "=0.2.1"
# 乱数分布
rand_distr = "=0.2.2"

# グラフ
petgraph = "=0.4.13"

# 幾何
euclid = "=0.20.4"
euclid = "=0.20.5"

# 素数
primal = "=0.2.3"
primal-check = "=0.2.3"
primal-estimate = "=0.2.1"
primal-sieve = "=0.2.9"

# 挿入順を保持するhash table
indexmap = "=1.3.0"
@@ -85,7 +97,7 @@ permutohedron = "=0.2.4"
superslice = "=1.0.0"

# イテレータの強化
itertools = "=0.8.1"
itertools = "=0.8.2"
itertools-num = "=0.1.3"

# `&mut T`から`T`を『借りる』
@@ -124,7 +136,7 @@ bitset-fixed = "=0.1.0"
# 競技プログラミングの入出力サポート
proconio = { version = "=0.3.4", features = ["derive"] }
text_io = "=0.1.7"
whiteread = "=0.4.4"
whiteread = "=0.5.0"

# 剰余関連。普通の整数型などと同じ感覚で扱うだけで自動的にmodを取ってくれる
# 答えの整数をMで割った余りが要求される設問で便利