first commit

This commit is contained in:
2022-08-04 17:38:10 +08:00
commit 79296a634a
14 changed files with 3312 additions and 0 deletions

33
Cargo.toml Normal file
View File

@ -0,0 +1,33 @@
[package]
name = "rust-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.6.0", features = [
"mysql",
"sqlite",
"runtime-actix-native-tls",
] }
sea-orm-migration = "^0.9.0"
sea-orm = { version = "^0.9.0", features = [
"sqlx-sqlite",
"debug-print",
"runtime-actix-native-tls",
"macros",
] }
actix-web = "4"
askama_actix = {version = "0.13"}
askama = "0.11"
serde = { version = "1", features = ["derive"] }
env_logger = "0.9"
log = "0.4"
async-trait = "0.1.57"
clap = { version = "^3", features = ["derive"] }
clap_complete = "^3"