Initial commit - current CRM state

This commit is contained in:
2026-06-22 15:43:25 +02:00
commit 215d6739d1
19 changed files with 3739 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[package]
name = "crm-api"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "json", "rust_decimal", "ipnetwork"] }
dotenvy = "0.15"
jsonwebtoken = "9"
uuid = { version = "1", features = ["v4", "serde"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower = "0.4"
thiserror = "1"
bcrypt = "0.15"
sha2 = "0.10"
hex = "0.4"
rust_decimal = { version = "1", features = ["serde"] }