lockwatch/lockwatch/Cargo.toml
finga f85a4d7e87 Lay out the structure of the project
Parse arguments which can be used to configure the server. Create a
WASM client stub and make the server capable of serving it. Document
the current state in the readem.
2022-09-17 18:49:41 +02:00

22 lines
672 B
TOML

[package]
name = "lockwatch"
version = "0.1.0"
edition = "2021"
description = "A competitive stopwatch, created for but not limited to lock-picking competitions."
license = "GPL-3.0-or-later"
readme = "../README.md"
repository = "https://git.onders.org/finga/lockwatch"
keywords = ["stop-watch", "time-taking", "lock-picking"]
categories = ["web-programming::http-server"]
[dependencies]
anyhow = "1"
log = "0.4"
axum = "0.5"
axum-extra = { version = "0.3", features = ["spa"] }
tokio = { version = "1.0", features = ["full"] }
tracing-subscriber = "0.3"
tower = "0.4"
tower-http = { version = "0.3", features = ["full"] }
clap = { version = "3", features = ["derive"] }