updte
This commit is contained in:
24
prototype/Cargo.toml
Normal file
24
prototype/Cargo.toml
Normal file
@@ -0,0 +1,24 @@
|
||||
[package]
|
||||
name = "synaptic"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
# パーサー
|
||||
nom = "7.1"
|
||||
# グラフ処理
|
||||
petgraph = "0.6"
|
||||
# 並列処理
|
||||
rayon = "1.7"
|
||||
# シリアライズ
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
# エラーハンドリング
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
# 確率的プログラミング
|
||||
rand = "0.8"
|
||||
rand_distr = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.5"
|
Reference in New Issue
Block a user