Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxidizer-rs/oxidizer
📦 A Rust ORM based on tokio-postgres and refinery
https://github.com/oxidizer-rs/oxidizer
orm postgres rust sql tokio
Last synced: 3 months ago
JSON representation
📦 A Rust ORM based on tokio-postgres and refinery
- Host: GitHub
- URL: https://github.com/oxidizer-rs/oxidizer
- Owner: oxidizer-rs
- License: mit
- Archived: true
- Created: 2020-07-05T17:57:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-05T21:36:34.000Z (over 3 years ago)
- Last Synced: 2024-09-21T09:22:53.730Z (3 months ago)
- Topics: orm, postgres, rust, sql, tokio
- Language: Rust
- Homepage: https://oxidizer-rs.github.io
- Size: 691 KB
- Stars: 126
- Watchers: 7
- Forks: 13
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oxidizer
[![Actions Status][ci-badge]][ci-url]
[![Crates.io][crates-badge]][crates-url]
[![API Docs][docs-badge]][docs-url]
[![MIT licensed][mit-badge]][mit-url]
[![Gitter](https://badges.gitter.im/oxidizer-rs/community.svg)][glitter-url][ci-badge]: https://github.com/oxidizer-rs/oxidizer/workflows/test/badge.svg
[ci-url]: https://github.com/oxidizer-rs/oxidizer/actions
[crates-badge]: https://img.shields.io/crates/v/oxidizer.svg
[crates-url]: https://crates.io/crates/oxidizer
[docs-badge]: https://docs.rs/oxidizer/badge.svg
[docs-url]: https://docs.rs/oxidizer
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg
[mit-url]: https://github.com/oxidizer-rs/oxidizer/blob/main/LICENSE
[glitter-url]: https://gitter.im/oxidizer-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge## ⚠️ Important ⚠️
Oxidizer is now EOL. Unfortunately, we have not been able to allocate time and effort to push Oxidizer forward. the code will remain available in GitHub in archived mode and everyone is welcome to fork and work on features as they wish.
## Overview
A Rust ORM based on [tokio-postgres](https://crates.io/crates/tokio-postgres) and [refinery](https://crates.io/crates/refinery) that helps you reduce the boilerplate of writing entities, tables & migrations when using tokio-postgres and refinery.
- Asynchronous from the ground up. All the database operations are
efficiently handled by tokio at runtime.
- Oxidizer macros generate code to access relations between entities with ease. Forward and reverse relations are supported.> Note that, while functional and working, this is in early stages. Use with caution.
## Features/Roadmap
- ⚙ - Work in progress
- 🗒 - TODO
- ⚗ - Implemented/TestingName | Status | Issue
--- | --- | ---
non-integer primary keys | ⚗
rustls | 🗒| [#13](https://github.com/oxidizer-rs/oxidizer/issues/13)
joins | 🗒 | [#12](https://github.com/oxidizer-rs/oxidizer/issues/12)
mysql support | 🗒 | [#11](https://github.com/oxidizer-rs/oxidizer/issues/11)
recursive queries | 🗒
transactions | 🗒
select subset of columns | 🗒## Contributing
There are a couple of ways in which you can contribute to Oxidizer, for example:
- [Submit bugs and feature requests](https://github.com/oxidizer-rs/oxidizer/issues), and help us verify as they are checked in
- Review the [documentation](https://oxidizer.rs/docs) and make pull requests for anything from typos to new content suggestionUnless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in Oxidizer by you, shall be licensed as MIT, without any additional
terms or conditions.## Feedback
- Ask a question on [Stack Overflow](https://stackoverflow.com/questions/tagged/oxidizer-rs)
- [Report an issue](https://github.com/oxidizer-rs/oxidizer/issues)
- Up vote [popular feature requests](https://github.com/oxidizer-rs/oxidizer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc)## License
This project is licensed under the [MIT license].
[mit license]: [mit-url]