Skip to content

Commit b483d25

Browse files
committed
Add 6 crates
1 parent de49be8 commit b483d25

File tree

2 files changed

+108
-1
lines changed

2 files changed

+108
-1
lines changed

Cargo.lock

+99
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+9-1
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,23 @@ superslice = "=1.0.0"
5353
# イテレータの強化
5454
itertools = "=0.8.1"
5555

56+
# `hashmap!`, `hashset!`, `btreemap!`, `btreeset!`
57+
maplit = "=1.0.2"
58+
5659
# 標準ライブラリのVecやHashMapに対応する永続データ構造
5760
# 永続データ構造は関数型言語によく見られるデータ構造で、要素を更新しても、そのデータ構造の
5861
# 以前のバージョンにアクセスできる。(更新の度に差分が記録されていくイメージ)
5962
im-rc = "=13.0.0"
6063

61-
# BitSet。C++のbitsetに相当
64+
# 可変長bit set。
65+
fixedbitset = "=0.2.0"
6266
bitset-fixed = "=0.1.0"
6367

6468
# 競技プログラミングの入出力サポート
69+
text_io = "=0.1.7"
70+
scan-rules = "=0.2.0"
71+
whiteread = "=0.4.4"
72+
scanner-rust = "=1.2.4"
6573
proconio = { version = "=0.3.4", features = ["derive"] }
6674

6775
# 剰余関連。普通の整数型などと同じ感覚で扱うだけで自動的にmodを取ってくれる

0 commit comments

Comments
 (0)