trictrac/bot/Cargo.toml

29 lines
695 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-08-20 13:09:57 +02:00
[[bin]]
2025-08-21 11:30:25 +02:00
name = "burn_train"
2025-08-20 13:09:57 +02:00
path = "src/burnrl/main.rs"
2025-05-26 20:44:35 +02:00
[[bin]]
2025-08-08 18:58:21 +02:00
name = "train_dqn_simple"
2025-08-19 16:27:37 +02:00
path = "src/dqn_simple/main.rs"
2025-05-26 20:44:35 +02:00
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"
2025-09-01 14:47:09 +02:00
burn = { version = "0.18", features = ["ndarray", "autodiff"] }
2025-06-22 15:42:55 +02:00
burn-rl = { git = "https://github.com/yunjhongwu/burn-rl-examples.git", package = "burn-rl" }
2025-08-04 18:04:40 +02:00
log = "0.4.20"
2025-08-22 09:24:01 +02:00
confy = "1.0.0"
board-game = "0.8.2"
internal-iterator = "0.2.3"