24 lines
426 B
TOML
24 lines
426 B
TOML
[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" |