24 lines
637 B
TOML
24 lines
637 B
TOML
[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"
|