first commit
This commit is contained in:
33
Cargo.toml
Normal file
33
Cargo.toml
Normal 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"
|
Reference in New Issue
Block a user