Cargo.toml (848B)
1 [package] 2 authors = ["Zack Newman <zack@philomathiclife.com>"] 3 categories = ["mathematics", "no-std"] 4 description = "Trait that represents a set according to Zermelo–Fraenkel set theory with the axiom of choice (ZFC)." 5 documentation = "https://docs.rs/zfc/latest/zfc/" 6 edition = "2021" 7 keywords = ["math", "set", "zfc"] 8 license = "MIT OR Apache-2.0" 9 name = "zfc" 10 readme = "README.md" 11 repository = "https://git.philomathiclife.com/repos/zfc/" 12 rust-version = "1.81.0" 13 version = "0.4.0" 14 15 [badges] 16 maintenance = { status = "actively-developed" } 17 18 [package.metadata.docs.rs] 19 all-features = true 20 rustdoc-args = ["--cfg", "docsrs"] 21 22 [dependencies] 23 num-bigint = { version = "0.4.6", default-features = false } 24 25 26 ### FEATURES ################################################################# 27 28 [features] 29 # Provide Set implementation for HashSet. 30 std = []