como/como_core/Cargo.toml
Kasper Juul Hermansen 3e9e0469f9
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update all dependencies
2022-11-15 17:01:41 +00:00

32 lines
743 B
TOML

[package]
name = "como_core"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
como_domain = { path = "../como_domain" }
tokio = { version = "1", features = ["full"] }
axum = "0.5.17"
# utilty crates
serde = { version = "1.0.147", features = ["derive"] }
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"postgres",
"time",
] }
serde_json = "1.0.87"
dotenv = "0.15.0"
tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1"
validator = { version = "0.16", features = ["derive"] }
async-trait = "0.1"
thiserror = "1"
rust-argon2 = "1.0"
clap = { version = "4", features = ["derive", "env"] }
mockall = "0.11.3"
time = "0.3"