initial push

This commit is contained in:
2023-02-08 16:25:06 +01:00
parent dcf260ca4a
commit 9fd0481f73
22 changed files with 6473 additions and 89 deletions

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[package]
name = "rot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sea-orm = { version = "^0", features = [ "sqlx-sqlite", "runtime-tokio-rustls", "macros" ] }
sea-orm-migration = { version = "0.11", features = [ "runtime-tokio-rustls", "sqlx-sqlite" ] }
serde = { version = "1.0", features = [ "derive" ]}
rocket = "0.5.0-rc.2"
rocket_dyn_templates = { version = "0.1.0-rc.2", features= ["tera"] }
chrono = { version = "0.4", features = ["serde"]}