2023-08-07 07:43:50 +00:00
|
|
|
[package]
|
|
|
|
name = "aah"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
".",
|
|
|
|
"entity",
|
|
|
|
"migration",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
entity = { path = "entity" }
|
|
|
|
migration = { path = "migration" }
|
|
|
|
|
|
|
|
anyhow = "1.0.72"
|
|
|
|
axum = { version = "0.6.20", features = ["multipart"] }
|
|
|
|
axum-auth = "0.4.0"
|
|
|
|
bollard = "0.14.0"
|
|
|
|
clap = { version = "4.3.19", features = ["derive"] }
|
|
|
|
futures = "0.3.28"
|
|
|
|
sea-orm = { version = "0.12", features = [ "sqlx-sqlite", "runtime-tokio-rustls", "macros" ] }
|
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
|
|
|
serde_json = "1.0.104"
|
|
|
|
serde_yaml = "0.9.25"
|
|
|
|
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "sqlite", "migrate"] }
|
|
|
|
tokio = { version = "1.29.1", features = ["full"] }
|
|
|
|
tower = { version = "0.4.13", features = ["full"] }
|
|
|
|
base64 = "0.21.2"
|
2023-08-07 09:21:47 +00:00
|
|
|
console-subscriber = "0.1.10"
|