bottle-orm 0.1.1

A lightweight and simple ORM for Rust built on top of sqlx
Documentation
[package]
name = "bottle-orm"
version = "0.1.1"
edition = "2024"
authors = ["Murilinho145SG"]
description = "A lightweight and simple ORM for Rust built on top of sqlx"
license = "MIT"
repository = "https://github.com/Murilinho145SG/bottle-orm"

[dependencies]
bottle-orm-macro = { version = "0.1.0", path = "../bottle-orm-macro" }
sqlx = { version = "0.8.6", features = [
	"runtime-tokio-native-tls",
	"any",
	"postgres",
	"mysql",
	"sqlite",
	"chrono",
] }
futures = "0.3.31"
chrono = { version = "0.4.43", features = ["serde"] }
async-trait = "0.1.89"
heck = "0.5.0"
serde = "1.0.228"
thiserror = "2.0.18"