Cargo.toml
1 [package] 2 name = "cyn" 3 description = "Chain of values" 4 license = "MPL-2.0" 5 categories = [ "rust-patterns" ] 6 keywords = [ "error", "chain" ] 7 repository = "https://github.com/cull-os/carcass/tree/master/cyn" 8 version = "0.0.1" 9 publish = true 10 11 authors.workspace = true 12 edition.workspace = true 13 14 [lib] 15 path = "mod.rs" 16 17 [lints] 18 workspace = true 19 20 [dependencies] 21 dup = { features = [ "rpds" ], path = "../dup" } 22 ust.path = "../ust" 23 24 rpds.workspace = true