rusticx 1.0.0

Blazingly fast, async-first, multi-database ORM for Rust (PostgreSQL, MySQL, MongoDB)
Documentation
[package]
name = "rusticx"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
description = "Blazingly fast, async-first, multi-database ORM for Rust (PostgreSQL, MySQL, MongoDB)"

[features]
default = []
postgres = ["dep:rusticx-postgres"]
mysql    = ["dep:rusticx-mysql"]
mongo    = ["dep:rusticx-mongo"]
full     = ["postgres", "mysql", "mongo"]

[dependencies]
rusticx-core   = { workspace = true }
rusticx-macros = { workspace = true }

rusticx-postgres = { workspace = true, optional = true }
rusticx-mysql    = { workspace = true, optional = true }
rusticx-mongo    = { workspace = true, optional = true }

serde = { workspace = true }
tokio = { workspace = true }
async-trait = { workspace = true }
tracing = { workspace = true }