arvo 0.1.1

Validated, immutable value objects for common domain types (email, money, identifiers, …)
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 = "2024"
rust-version = "1.85"
name = "arvo"
version = "0.1.1"
authors = ["Codegress <hello@codegress.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Validated, immutable value objects for common domain types (email, money, identifiers, …)"
homepage = "https://github.com/codegress-com/arvo"
documentation = "https://docs.rs/arvo"
readme = "README.md"
keywords = [
    "value-object",
    "validation",
    "domain",
    "ddd",
    "type-safety",
]
categories = [
    "data-structures",
    "value-formatting",
]
license = "MIT"
repository = "https://github.com/codegress-com/arvo"
resolver = "3"

[features]
contact = [
    "dep:once_cell",
    "dep:regex",
]
default = []
full = ["contact"]
serde = ["dep:serde"]
sql = ["dep:sqlx"]

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

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

[dependencies.once_cell]
version = "1"
optional = true

[dependencies.regex]
version = "1"
optional = true

[dependencies.rust_decimal]
version = "1"
optional = true

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

[dependencies.sqlx]
version = "0.8"
features = ["postgres"]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.ulid]
version = "1"
optional = true

[dependencies.url]
version = "2"
optional = true

[dependencies.uuid]
version = "1"
features = ["v4"]
optional = true

[dev-dependencies.serde_json]
version = "1"