initial commit
Some checks failed
CI / build (push) Failing after 10s

This commit is contained in:
2025-07-04 11:56:23 +08:00
commit bd83d65d7b
17 changed files with 3345 additions and 0 deletions

23
Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[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"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenv = "0.15"
bigdecimal = { version = "0.4", features = ["serde"] }
[lib]
crate-type = ["bin"]
[dev-dependencies]
axum-test = "17.3"