25 lines
606 B
TOML
25 lines
606 B
TOML
[package]
|
|
name = "tidepool"
|
|
description = "Tools for automated testing of Blockfish on cheese race"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
mino = { path = "../mino" }
|
|
fish = { path = "../fish" }
|
|
|
|
# lib
|
|
rand = "0.8"
|
|
rand_xoshiro = "0.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tracing = { version = "0.1" }
|
|
|
|
# cli
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"]}
|
|
toml = { version = "0.8" }
|
|
serde_json = { version = "1.0" }
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
anyhow = { version = "1.0" }
|
|
ctrlc = { version = "3.4" }
|
|
chrono = { version = "0.4" }
|