An open API service indexing awesome lists of open source software.

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

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.