valobj 0.1.1

A Rust library for defining value objects using procedural macros.
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"
name = "valobj"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for defining value objects using procedural macros."
documentation = "https://docs.rs/valobj"
readme = "README.md"
keywords = [
    "valobj",
    "value_object",
    "newtype",
]
license = "MIT"
repository = "https://github.com/ehorrent/valobj"

[package.metadata]

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

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

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

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

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

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

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

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

[dependencies.valobj_macros]
version = "0.1.0"

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