# sqlstr A SQL (sqlstr) query builder. ## Features - `#![no_std]` and no [`core::fmt`](https://doc.rust-lang.org/core/fmt/index.html) ## TODO - [ ] publish the library (version 0.1.0) - [ ] Complete the SQL dialect - [ ] comparisson expressions - [ ] BETWEEN - [ ] IN list - [ ] IS NULL - [ ] IS NOT NULL - [ ] EXISTS - [ ] functions - [ ] text - [ ] list and array - [ ] math - [ ] date and time - [ ] add database dialects - [ ] Postgres - [ ] MySQL - [ ] SQLite - [ ] import features from other crates - [ ] https://docs.rs/sql-builder/latest/sql_builder/ - [ ] https://docs.rs/sql_query_builder/latest/sql_query_builder/ - [ ] add integration tests for complex commands - [ ] Audit `core::fmt` usage under `fmt` feature flag - [ ] Stript the `Debug` implementations on release build - [ ] [SQL Commands](https://www.postgresql.org/docs/current/sql-commands.html) - [ ] Create an example/benchmark without `fmt` and `std` features and verify the binary size with [cargo-bloat](https://github.com/RazrFalcon/cargo-bloat)