RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

42 wiersze
897 B

  1. [package]
  2. name = "server"
  3. version.workspace = true
  4. edition.workspace = true
  5. license.workspace = true
  6. repository.workspace = true
  7. description = "Axum API server"
  8. [[bin]]
  9. name = "server"
  10. path = "src/main.rs"
  11. [[bin]]
  12. name = "export-openapi"
  13. path = "src/bin/export-openapi.rs"
  14. [dependencies]
  15. anyhow.workspace = true
  16. axum.workspace = true
  17. chrono.workspace = true
  18. dotenvy.workspace = true
  19. figment.workspace = true
  20. http.workspace = true
  21. serde.workspace = true
  22. serde_json.workspace = true
  23. sqlx.workspace = true
  24. thiserror.workspace = true
  25. tokio.workspace = true
  26. tower.workspace = true
  27. tower-http.workspace = true
  28. tracing.workspace = true
  29. tracing-subscriber.workspace = true
  30. utoipa.workspace = true
  31. utoipa-axum.workspace = true
  32. utoipa-swagger-ui.workspace = true
  33. uuid.workspace = true
  34. validator.workspace = true
  35. [dev-dependencies]
  36. http-body-util = "0.1"
  37. tower = { version = "0.5", features = ["util"] }