trictrac/bot/Cargo.toml

19 lines
391 B
TOML
Raw Normal View History

2024-03-24 18:37:35 +01:00
[package]
name = "bot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2025-05-26 20:44:35 +02:00
[[bin]]
name = "train_dqn"
path = "src/bin/train_dqn.rs"
2024-03-24 18:37:35 +01:00
[dependencies]
pretty_assertions = "1.4.0"
2025-03-02 15:20:24 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-03-24 18:37:35 +01:00
store = { path = "../store" }
rand = "0.8"
2025-05-26 20:44:35 +02:00
env_logger = "0.10"