tmtd/Cargo.toml

38 lines
708 B
TOML
Raw Normal View History

2022-04-02 18:08:48 -05:00
[package]
name = "tmtd"
version = "0.1.0"
edition = "2021"
2022-04-09 10:30:20 -05:00
[profile.release]
strip = "debuginfo"
lto = true
2022-04-02 18:08:48 -05:00
[dependencies]
2022-04-03 10:08:20 -05:00
toml = "0.5"
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1.0"
2022-04-09 10:30:20 -05:00
chrono = "0.4"
2022-05-10 09:34:13 -05:00
dotenv = "0.15"
2022-05-11 04:07:01 -05:00
argon2 = "0.4"
2022-05-10 09:34:13 -05:00
askama = "0.11"
actix-web = "4.0"
2022-05-31 08:43:56 -05:00
include_dir = "0.7"
2022-05-10 09:34:13 -05:00
2022-05-13 17:07:11 -05:00
rand_core = { version = "0.6", features = ["std"] }
2022-05-10 09:34:13 -05:00
serde = { version = "1.0", features = ["derive"] }
async-sqlx-session = { version = "0.4", default-features = false, features = ["pg"] }
tokio = { version = "1.18", features = [
"rt",
"sync",
"signal",
"macros"
]}
sqlx = { version = "0.5", default-features = false, features = [
"runtime-tokio-rustls",
"postgres",
"macros"
]}