Cargo.toml
1[package]
2name = "derive_refineable"
3version = "0.1.0"
4edition.workspace = true
5publish = false
6license = "Apache-2.0"
7description = "A derive macro for creating refinement types in Rust"
8
9
10[lints]
11workspace = true
12
13[lib]
14path = "src/derive_refineable.rs"
15proc-macro = true
16doctest = false
17
18[dependencies]
19proc-macro2.workspace = true
20quote.workspace = true
21syn.workspace = true
22workspace-hack.workspace = true