initial commit

This commit is contained in:
2025-07-04 11:56:23 +08:00
commit 0cf47db3e8
9 changed files with 361 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "intrasys"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", features = ["json"] }
tokio = { version = "1.46", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio", "chrono", "bigdecimal", "derive"] }
thiserror = "2.0"
uuid = { version = "1.17", features = ["v4"] }
# validator = { version = "0.20", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenv = "0.15"
bigdecimal = { version = "0.4", features = ["serde"] }