33 lines
690 B
TOML
33 lines
690 B
TOML
|
[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"
|