Files
osirose-new/session-service/Cargo.toml
raven 3c1f8c40d6 - add: session-service
- move: redis_cache from database service to utils so it can be reused
- update: redis_cache set function to allow creating a key without a lifetime
- update: services to use the new get_or_generate_service_id function
2024-12-20 14:43:25 -05:00

20 lines
415 B
TOML

[package]
name = "session-service"
version = "0.1.0"
edition = "2021"
[dependencies]
utils = { path = "../utils" }
dotenv = "0.15"
tokio = { version = "1.41.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3.18"
tonic = "0.12.3"
prost = "0.13.4"
warp = "0.3.7"
chrono = "0.4.39"
serde_json = "1.0.133"
[build-dependencies]
tonic-build = "0.12.3"