[package]
edition = "2024"
name = "typeshaper"
version = "0.1.5"
build = false
exclude = ["examples/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TypeScript utility-type idioms (Omit, Pick, Merge, Partial…) for Rust structs — one-line type algebra expressions"
readme = "README.md"
keywords = [
"codegen",
"struct",
"omit",
"pick",
"partial",
]
categories = [
"rust-patterns",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wwog/typeshaper"
[lib]
name = "typeshaper"
path = "src/lib.rs"
[[test]]
name = "bugs"
path = "tests/bugs.rs"
[[test]]
name = "compile_errors"
path = "tests/compile_errors.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "usage"
path = "tests/usage.rs"
[[test]]
name = "visibility"
path = "tests/visibility.rs"
[dependencies.typeshaper-macros]
version = "0.1.5"
[dev-dependencies.trybuild]
version = "1"
features = ["diff"]