[package]
edition = "2024"
name = "valobj"
version = "0.1.2"
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.2"
[dev-dependencies.trybuild]
version = "1.0.116"