Skip to content

Commit 879e99e

Browse files
committed
Remove im
1 parent f1d154d commit 879e99e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ arrayvec = "=0.4.10"
5555
# 標準ライブラリのVecやHashMapに対応する永続データ構造
5656
# 永続データ構造は関数型言語によく見られるデータ構造で、要素を更新しても、そのデータ構造の
5757
# 以前のバージョンにアクセスできる。(更新の度に差分が記録されていくイメージ)
58-
im = "=13.0.0" # スレッドセーフ
59-
im-rc = "=13.0.0" # スレッドセーフでないが高速
58+
im-rc = "=13.0.0"
6059

6160
# 多バイト長整数、分数、複素数など
6261
num = "=0.2.0"

src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ fn main() -> UnitResult {
1515
run_hashbrown();
1616
// run_smallvec();
1717
// run_arrayvec();
18-
// run_im();
1918
// run_im_rc();
2019
// run_num();
2120
run_rand_family()?;
@@ -370,7 +369,6 @@ fn test_hashbrown() {
370369
// smallvec
371370
// arrayvec
372371

373-
// im
374372
// im-rc
375373

376374
// num

0 commit comments

Comments
 (0)