[package]
edition = "2024"
name = "dizzy"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for safely interacting with DST newtypes"
readme = "README.md"
keywords = [
"newtype",
"dst",
"derive",
"macros",
]
categories = [
"no-std",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/eikopf/dizzy"
resolver = "2"
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "dizzy"
path = "src/lib.rs"
[[test]]
name = "ascii-str"
path = "tests/ascii-str.rs"
[[test]]
name = "bounded-str"
path = "tests/bounded-str.rs"
[[test]]
name = "complex-generics"
path = "tests/complex-generics.rs"
[[test]]
name = "slice1"
path = "tests/slice1.rs"
[[test]]
name = "str1-nostd"
path = "tests/str1-nostd.rs"
[dependencies.dizzy-macros]
version = "=0.1.0"