added rust api to control DESI data distribution; updated to utilize bun for renovate
CI / Unit tests (pull_request) Failing after 8m55s

This commit is contained in:
2026-08-31 13:17:05 -06:00
parent 32ab1213fb
commit 5148d7e54f
19 changed files with 978 additions and 16 deletions
+22
View File
@@ -0,0 +1,22 @@
[package]
name = "desi-explorer-api"
version = "0.1.0"
edition = "2021"
description = "Backend API for DESI Explorer — serves DESI survey catalog data"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
serde = { version = "1", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
anyhow = "1"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
serde_json = "1"
[profile.release]
lto = true
strip = true