ormada 0.1.0

Ergonomic ORM for Rust with compile-time safety and Django-like query API
Documentation
[dependencies.async-trait]
version = "0.1"

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

[dependencies.futures]
version = "0.3"

[dependencies.once_cell]
version = "1.19"

[dependencies.ormada-derive]
optional = true
version = "0.1.0"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rustc-hash]
version = "2.1.1"

[dependencies.sea-orm]
features = ["runtime-tokio-native-tls", "sqlx-postgres", "macros"]
version = "~2.0.0-rc.18"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.13"

[dependencies.sqlformat]
version = "0.5.0"

[dependencies.tokio]
features = ["sync"]
version = "1"

[dependencies.tracing]
version = "0.1"

[dev-dependencies.criterion]
features = ["async_tokio", "html_reports"]
version = "0.8.1"

[dev-dependencies.rstest]
version = "0.26.1"

[dev-dependencies.sea-orm]
features = ["sqlx-sqlite", "runtime-tokio-native-tls", "mock"]
version = "2.0.0-rc.18"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[dev-dependencies.trybuild]
version = "1.0"

[dev-dependencies.uuid]
features = ["v4", "serde"]
version = "1.0"

[features]
default = ["derive"]
derive = ["ormada-derive"]

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

[lints.clippy]
expect_used = "allow"
indexing_slicing = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "allow"
return_self_not_must_use = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_in_result = "warn"
unwrap_used = "allow"

[lints.clippy.complexity]
level = "warn"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.clippy.perf]
level = "warn"
priority = -1

[lints.clippy.style]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "forbid"
unused_must_use = "deny"

[package]
authors = ["Stanislav Petrov <slavpetroff@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous"]
description = "Ergonomic ORM for Rust with compile-time safety and Django-like query API"
documentation = "https://docs.rs/ormada"
edition = "2021"
exclude = ["tests/", "benches/", ".github/", "Makefile", "tarpaulin-report.html"]
homepage = "https://github.com/slavpetroff/ormada"
keywords = ["orm", "database", "seaorm", "query", "async"]
license = "MIT"
name = "ormada"
readme = "README.md"
repository = "https://github.com/slavpetroff/ormada"
rust-version = "1.75"
version = "0.1.0"