zino-model 0.29.0

Domain models for zino.
Documentation
[package]
name = "zino-model"
description = "Domain models for zino."
version = "0.29.0"
rust-version = "1.80"
edition = "2021"
license = "MIT"
categories = ["web-programming", "database"]
keywords = ["web", "model", "orm", "schema"]
homepage = "https://github.com/zino-rs/zino"
repository = "https://github.com/zino-rs/zino"
documentation = "https://docs.rs/zino-model"
readme = "README.md"

[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustdoc-args = ["--cfg", "docsrs"]

[features]
default = [
    "namespace",
    "visibility",
    "tags",
    "owner-id",
    "maintainer-id",
    "edition",
]
namespace = []
visibility = []
tags = []
owner-id = []
maintainer-id = []
edition = []

[dependencies]
tracing = "0.1.41"

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

[dependencies.sqlx]
version = "0.8.3"
default-features = false

[dependencies.strum]
version = "0.26.3"
features = ["derive"]

[dependencies.zino-auth]
path = "../zino-auth"
version = "0.3.0"
features = ["jwt"]

[dependencies.zino-core]
path = "../zino-core"
version = "0.31.0"
features = ["validator-email"]

[dependencies.zino-derive]
path = "../zino-derive"
version = "0.29.0"

[dependencies.zino-orm]
path = "../zino-orm"
version = "0.3.0"