2025-04-17 16:08:14 -07:00
|
|
|
[package]
|
|
|
|
|
name = "rust"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-25 13:52:02 -07:00
|
|
|
atrium-api = { version = "0.25.2", default-features = false }
|
2025-04-18 19:10:17 -07:00
|
|
|
axum = { version = "0.8.3", features = ["json"] }
|
2025-04-24 14:45:53 -07:00
|
|
|
axum-macros = "0.5.0"
|
2025-04-25 13:52:02 -07:00
|
|
|
http = "1.3.1"
|
2025-05-06 13:50:57 -07:00
|
|
|
regex = "1.11.1"
|
|
|
|
|
rocketman = "0.2.0"
|
2025-04-18 19:10:17 -07:00
|
|
|
serde = "1.0.219"
|
|
|
|
|
serde_json = "1.0.140"
|
2025-04-25 13:52:02 -07:00
|
|
|
sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio"] }
|
2025-04-17 16:08:14 -07:00
|
|
|
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
|
2025-05-06 13:50:57 -07:00
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
esquema-codegen = { git = "https://github.com/fatfingers23/esquema.git", branch = "main" }
|