nyanoblog/Cargo.toml

21 lines
531 B
TOML
Raw Normal View History

2022-12-01 01:07:28 +01:00
[package]
name = "nyanoblog"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-12-06 19:48:44 +01:00
actix-rt = "2.7"
2022-12-01 01:07:28 +01:00
actix-web = "4"
2022-12-06 20:09:49 +01:00
argon2 = "0.4"
2022-12-06 19:48:44 +01:00
async-trait = "0.1.59"
2022-12-05 20:02:18 +01:00
chrono = { version = "0.4", features = [ "alloc", "clock", "serde" ] }
2022-12-04 23:38:02 +01:00
dotenvy = "0.15.6"
2022-12-18 17:09:08 +01:00
jsonwebtoken = { version = "8", default-features = false }
2022-12-05 20:16:56 +01:00
log = "0.4"
pretty_env_logger = "0.4"
2022-12-18 17:09:08 +01:00
serde = { version = "1.0", features = [ "derive" ] }
2022-12-05 20:02:18 +01:00
serde_json = "1.0"
sqlx = { version = "0.6", features = [ "chrono", "runtime-actix-rustls", "postgres" ] }
thiserror = "1.0"
2022-12-18 17:09:08 +01:00
tokio = "1.23"