first commit

This commit is contained in:
think.overdrive
2026-01-14 16:24:37 +01:00
commit 94332450aa
18 changed files with 6021 additions and 0 deletions

23
producer/Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "atlas_producer"
version = "0.1.0"
edition = "2024"
[lib]
name = "atlas_message"
path = "src/lib.rs"
[dependencies]
ring = "0.17.14"
rand = "0.9.2"
serde = { version = "1.0.228", features = ["derive"]}
serde_json = "1.0.145"
base64 = "0.22.1"
hex = "0.4.3"
tokio = { version = "1.32.0", features = ["full"] }
redis = { version = "0.32.7", features = ["aio", "connection-manager", "tokio-comp"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"]}
regex = "1.11"
chrono = { version = "0.4.42", features = ["serde"] }
lapin = { version = "3.7.2" }