2022-10-03 22:08:25 +02:00
|
|
|
[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]
|
2022-10-04 11:06:48 +02:00
|
|
|
como_domain = { path = "../como_domain" }
|
2022-10-03 23:00:31 +02:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2022-11-15 18:01:41 +01:00
|
|
|
axum = "0.5.17"
|
2022-10-03 23:00:31 +02:00
|
|
|
|
|
|
|
# utilty crates
|
2022-11-15 18:01:41 +01:00
|
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
|
|
sqlx = { version = "0.6", features = [
|
2022-10-03 23:00:31 +02:00
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"postgres",
|
|
|
|
"time",
|
|
|
|
] }
|
2022-11-22 15:27:52 +01:00
|
|
|
serde_json = "1.0.89"
|
2022-10-03 23:00:31 +02:00
|
|
|
dotenv = "0.15.0"
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
anyhow = "1"
|
2022-11-15 18:01:41 +01:00
|
|
|
validator = { version = "0.16", features = ["derive"] }
|
2022-10-03 23:00:31 +02:00
|
|
|
async-trait = "0.1"
|
|
|
|
thiserror = "1"
|
|
|
|
rust-argon2 = "1.0"
|
2022-11-15 18:01:41 +01:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
mockall = "0.11.3"
|
|
|
|
time = "0.3"
|