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.
This commit is contained in:
finga 2022-09-17 18:12:45 +02:00
commit f85a4d7e87
12 changed files with 2250 additions and 0 deletions

21
lockwatch/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[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"] }