- add: ability to delete keys from RedisCache - update: docker compose to init the database with the schema
32 lines
791 B
TOML
32 lines
791 B
TOML
[package]
|
|
name = "database-service"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
mocks = []
|
|
consul = []
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.41.1", features = ["full"] }
|
|
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-native-tls", "chrono"] }
|
|
tonic = "0.12.3"
|
|
chrono = { version = "0.4.39", features = ["serde"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
dotenv = "0.15"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
|
|
prost = "0.13.3"
|
|
prost-types = "0.13.3"
|
|
redis = "0.27.5"
|
|
deadpool-redis = "0.18.0"
|
|
serde_json = "1.0.133"
|
|
async-trait = "0.1.83"
|
|
mockall = "0.13.1"
|
|
reqwest = { version = "0.12.9", features = ["json"] }
|
|
warp = "0.3.7"
|
|
utils = { path = "../utils" }
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12.3"
|