monzo-ingestion/Cargo.toml
Joshua Coles 62d5ad8dc2
All checks were successful
Build and Publish Docker Container / build (push) Successful in 9m24s
Add testing for notify behaviour
2024-05-29 20:00:47 +01:00

35 lines
864 B
TOML

[package]
name = "monzo-ingestion"
version = "0.1.0"
edition = "2021"
[dependencies]
entity = { path = "entity" }
migration = { path = "migration" }
axum = { version = "0.7.5", features = ["multipart"] }
tokio = { version = "1.37.0", features = ["full"] }
sea-orm = { version = "1.0.0-rc.4", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros"
] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
anyhow = "1.0.86"
thiserror = "1.0.61"
http = "1.1.0"
chrono = { version = "0.4.38", features = ["serde"] }
num-traits = "0.2.19"
csv = "1.3.0"
clap = "4.5.4"
testcontainers = "0.17.0"
testcontainers-modules = { version = "0.5.0", features = ["postgres"] }
sqlx = { version = "0.7.4", features = ["postgres"] }
[workspace]
members = [".", "migration", "entity"]