zfc

Library for sets according to ZFC.
git clone https://git.philomathiclife.com/repos/zfc
Log | Files | Refs | README

Cargo.toml (790B)


      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 = "2024"
      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.85.0"
     13 version = "0.4.1"
     14 
     15 [package.metadata.docs.rs]
     16 all-features = true
     17 rustdoc-args = ["--cfg", "docsrs"]
     18 
     19 [dependencies]
     20 num-bigint = { version = "0.4.6", default-features = false }
     21 
     22 
     23 ### FEATURES #################################################################
     24 
     25 [features]
     26 # Provide Set implementation for HashSet.
     27 std = []