rquery-orm 1.0.0

Lightweight SQL ORM for Rust with query-style (MSSQL + PostgreSQL).
Documentation
[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
features = ["clock"]
version = "0.4"

[dependencies.futures]
version = "0.3"

[dependencies.native-tls]
version = "0.2"

[dependencies.postgres-native-tls]
version = "0.5"

[dependencies.regex]
version = "1"

[dependencies.rquery-orm-macros]
version = "1.0.0"

[dependencies.rust_decimal]
version = "1"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tiberius]
default-features = false
features = ["native-tls", "tds73", "chrono", "rust_decimal"]
version = "0.12.3"

[dependencies.tokio]
features = ["macros", "rt-multi-thread", "net", "time"]
version = "1"

[dependencies.tokio-postgres]
features = ["with-uuid-1", "with-chrono-0_4", "with-serde_json-1"]
version = "0.7"

[dependencies.tokio-util]
features = ["compat"]
version = "0.7"

[dependencies.uuid]
version = "1"

[dev-dependencies.tokio]
features = ["macros", "rt-multi-thread"]
version = "1"

[[example]]
name = "usage"
path = "examples/usage.rs"

[lib]
name = "rquery_orm"
path = "src/lib.rs"

[package]
authors = ["Luis Carlos Carrillo"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous"]
description = "Lightweight SQL ORM for Rust with query-style (MSSQL + PostgreSQL)."
documentation = "https://docs.rs/rquery-orm"
edition = "2021"
keywords = ["orm", "sql", "rust", "query", "database"]
license = "MIT"
name = "rquery-orm"
readme = "README.md"
repository = "https://github.com/luigimonsoft/rquery-orm"
version = "1.0.0"

[[test]]
name = "it_mssql"
path = "tests/it_mssql.rs"

[[test]]
name = "it_pg"
path = "tests/it_pg.rs"

[[test]]
name = "unit_entity"
path = "tests/unit_entity.rs"

[[test]]
name = "unit_query"
path = "tests/unit_query.rs"

[[test]]
name = "unit_validation"
path = "tests/unit_validation.rs"