trictrac/store/Cargo.toml

30 lines
871 B
TOML
Raw Normal View History

2022-12-14 13:58:44 +01:00
[package]
name = "trictrac-store"
2022-12-14 13:58:44 +01:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2025-02-08 13:28:42 +01:00
[lib]
name = "trictrac_store"
2026-02-26 13:27:55 +01:00
# "cdylib" → Python .so built by maturin (pyengine)
# "rlib" → used by other workspace crates (bot, client_cli)
# "staticlib" → used by the C++ OpenSpiel game (cxxengine)
crate-type = ["cdylib", "rlib", "staticlib"]
2025-02-08 13:28:42 +01:00
2022-12-14 13:58:44 +01:00
[dependencies]
2026-02-26 13:27:55 +01:00
anyhow = "1.0"
2024-01-20 21:40:06 +01:00
base64 = "0.21.7"
2026-02-26 13:27:55 +01:00
cxx = "1.0"
2025-01-12 16:38:43 +01:00
# provides macros for creating log messages to be used by a logger (for example env_logger)
2023-11-05 17:14:58 +01:00
log = "0.4.20"
2024-05-28 18:52:49 +02:00
merge = "0.1.0"
2026-01-18 18:41:08 +01:00
# generate python lib (with maturin) to be used in AI training
pyo3 = { version = "0.23", features = ["extension-module", "abi3-py38"] }
rand = "0.9"
2025-01-12 16:38:43 +01:00
serde = { version = "1.0", features = ["derive"] }
2024-02-18 18:40:45 +01:00
transpose = "0.2.2"
2026-02-26 13:27:55 +01:00
[build-dependencies]
cxx-build = "1.0"