lref 0.3.2

Rust Entity Framework - An EFCore-inspired ORM for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "lref"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Entity Framework - An EFCore-inspired ORM for Rust"
readme = "README.md"
keywords = [
    "orm",
    "efcore",
    "entity-framework",
    "database",
    "postgresql",
]
categories = ["database"]
license = "MIT"
repository = "https://gitcode.com/rf2026/lref"

[features]
chrono = ["dep:chrono"]
default = []
serde = ["dep:serde"]

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

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

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

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

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

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.lrdi]
version = "0.2.6"

[dependencies.lref-macros]
version = "0.3.2"

[dependencies.pin-project-lite]
version = "0.2"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.thiserror]
version = "2"

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

[dev-dependencies]