Files
blood-brain-barrier/backend/Cargo.toml
Mikhail Kilin 570e0ca643
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Rewrite app: entries → projects with S3 file storage
Replace flat text entries with project-based structure.
Each project has name, local/corp fields, content textarea,
and file upload (up to 100MB) stored in MinIO S3.
New API: CRUD projects + file download + content copy.
Frontend: two views (project list + project page).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 13:50:28 +03:00

16 lines
489 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", features = ["multipart"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "chrono"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.6", features = ["cors"] }
chrono = { version = "0.4", features = ["serde"] }
rust-s3 = "0.35"
uuid = { version = "1", features = ["v4"] }