Cargo.toml (633B)
1 [package] 2 authors = ["Zack Newman <zack@philomathiclife.com>"] 3 categories = ["data-structures", "mathematics", "no-std"] 4 description = "Map that stores distinct supersets based on the total order defined." 5 documentation = "https://docs.rs/superset_map/latest/superset_map/" 6 edition = "2021" 7 keywords = ["btree", "map", "ordered", "set", "subset"] 8 license = "MIT OR Apache-2.0" 9 name = "superset_map" 10 readme = "README.md" 11 repository = "https://git.philomathiclife.com/repos/superset_map/" 12 version = "0.3.0" 13 14 [badges] 15 maintenance = { status = "actively-developed" } 16 17 [dependencies] 18 zfc = { version = "0.4.0", default-features = false }