Skip to content

Commit 2bad3b4

Browse files
committed
Also make the "assorted" crates available
1 parent 17d3ad7 commit 2bad3b4

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

Cargo.lock

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,14 @@ default = ["jemalloc"]
2121

2222
# 多バイト長整数、分数、複素数など
2323
num = "=0.2.0"
24-
num-derive = "=0.3.0"
25-
# num-derive が依存するため必要
24+
num-bigint = "=0.2.3"
25+
num-complex = "=0.2.3"
26+
num-integer = "=0.1.41"
27+
num-iter = "=0.1.39"
28+
num-rational = "=0.2.2"
2629
num-traits = "=0.2.10"
30+
# `num-traits`用のderive macros
31+
num-derive = "=0.3.0"
2732

2833
# 多次元配列
2934
ndarray = "=0.13.0"
@@ -37,8 +42,12 @@ libm = "=0.2.1"
3742

3843
# RNG 疑似乱数生成器 (randファミリー)
3944
rand = { version = "=0.7.2", features = ["small_rng"] }
45+
getrandom = "=0.1.13"
4046
rand_chacha = "=0.2.1"
47+
rand_core = "=0.5.1"
48+
rand_hc = "=0.2.0"
4149
rand_pcg = "=0.2.1"
50+
# 乱数分布
4251
rand_distr = "=0.2.2"
4352

4453
# グラフ
@@ -49,6 +58,9 @@ euclid = "=0.20.5"
4958

5059
# 素数
5160
primal = "=0.2.3"
61+
primal-check = "=0.2.3"
62+
primal-estimate = "=0.2.1"
63+
primal-sieve = "=0.2.9"
5264

5365
# 挿入順を保持するhash table
5466
indexmap = "=1.3.0"

0 commit comments

Comments
 (0)