19 lines
398 B
TOML
19 lines
398 B
TOML
[package]
|
|
name = "zed-refineable"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish = true
|
|
license = "Apache-2.0"
|
|
description = "A macro for creating 'refinement' types that can be used to partially initialize or mutate a complex struct"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/refineable.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
derive_refineable.workspace = true
|
|
workspace-hack.workspace = true
|