39 lines
721 B
TOML
39 lines
721 B
TOML
[package]
|
|
authors = ["Max Känner"]
|
|
name = "battlesnake"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
|
|
readme = "README.md"
|
|
repository = "https://git.mkaenner.de/max/battlesnake"
|
|
keywords = ["battlesnake"]
|
|
description = """
|
|
A simple Battlesnake written in Rust
|
|
"""
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
nursery = "warn"
|
|
|
|
[dependencies]
|
|
# server
|
|
tokio = { version = "1.43", features = ["net", "macros", "rt-multi-thread"] }
|
|
axum = { version = "0.8", features = ["http2", "multipart", "ws"] }
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
# logging
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
|
|
# other
|
|
bitvec = "1.0"
|
|
enum-iterator = "2.1"
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
|
|
[[bench]]
|
|
name = "simulation"
|
|
harness = false
|