https://github.com/thesurlydev/axum-template
A cargo generate template for an Axum service with sqlx configured for PostgreSQL
https://github.com/thesurlydev/axum-template
axum cargo-generate postgresql sqlx
Last synced: 2 months ago
JSON representation
A cargo generate template for an Axum service with sqlx configured for PostgreSQL
- Host: GitHub
- URL: https://github.com/thesurlydev/axum-template
- Owner: thesurlydev
- License: apache-2.0
- Created: 2023-04-15T19:15:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T20:59:41.000Z (3 months ago)
- Last Synced: 2025-03-28T06:23:39.814Z (3 months ago)
- Topics: axum, cargo-generate, postgresql, sqlx
- Language: Liquid
- Homepage:
- Size: 57.6 KB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# {{project-name}}
{{description}}
## References
Here are reference docs for the crates used in this project:
- [axum docs](https://docs.rs/axum/latest/axum/) - web framework that focuses on ergonomics and modularity.
- [sqlx docs](https://docs.rs/sqlx/latest/sqlx/) - an async, pure Rust SQL crate featuring compile-time checked
queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
- [tracing docs](https://docs.rs/tracing/latest/tracing/) - a framework for instrumenting Rust programs to collect
structured, event-based diagnostic information.
- [serde docs](https://docs.rs/serde/latest/serde/) - framework for serializing and deserializing Rust data
structures efficiently and generically.