blob: c78410b3c181097967cf6b1188769bb5e07cef36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[package]
name = "hurrycurry-bot"
version = "3.0.1"
edition = "2024"
[dependencies]
hurrycurry-game-core = { path = "../game-core", features = ["tokio-network"] }
hurrycurry-protocol = { path = "../protocol" }
log = "0.4.28"
anyhow = "1.0.99"
env_logger = "0.11.8"
rustls = { version = "0.23.31", features = ["ring"] }
clap = { version = "4.5.47", features = ["derive"] }
[features]
# default = ["debug_events"]
debug_events = []
|