First import

This commit is contained in:
2022-04-05 23:00:18 +02:00
commit 100c5558b4
46 changed files with 1341 additions and 0 deletions

17
template/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "{{project-name}}"
version = "0.1.0"
edition = "2021"
authors = ["{{authors}}"]
[workspace]
members = ["api", "web"]
[lib]
path = "src/lib.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8.0", features = ["serde"] }
chrono = { version = "0.4.0", features = ["serde"] }