[package]
edition = "2021"
name = "rusticx"
version = "1.0.0"
authors = ["Tarun Vishwakarma"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazingly fast, async-first, multi-database ORM for Rust (PostgreSQL, MySQL, MongoDB)"
homepage = "https://github.com/TarunVishwakarma1/rusticx-orm"
documentation = "https://docs.rs/rusticx"
readme = "README.md"
keywords = [
"orm",
"database",
"async",
"postgres",
"mongodb",
]
categories = [
"database",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/TarunVishwakarma1/rusticx-orm"
[features]
default = []
full = [
"postgres",
"mysql",
"mongo",
]
mongo = ["dep:rusticx-mongo"]
mysql = ["dep:rusticx-mysql"]
postgres = ["dep:rusticx-postgres"]
[lib]
name = "rusticx"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.rusticx-core]
version = "1.0.0"
[dependencies.rusticx-macros]
version = "1.0.0"
[dependencies.rusticx-mongo]
version = "1.0.0"
optional = true
[dependencies.rusticx-mysql]
version = "1.0.0"
optional = true
[dependencies.rusticx-postgres]
version = "1.0.0"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"