This commit is contained in:
2025-07-23 14:43:07 +09:00
parent d8966128c8
commit 950548385c
26 changed files with 2980 additions and 0 deletions

24
prototype/Cargo.toml Normal file
View 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"