# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "irange" version = "1.1.2" authors = ["Alexandre van Beurden"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A data structure to store and manipulate ranges of integers with set operations" readme = "README.md" keywords = [ "range", "intersection", "union", "difference", "complement", ] license = "MIT" repository = "https://github.com/alexvbrdn/irange" [package.metadata.docs.rs] features = ["serde"] [lib] name = "irange" path = "src/lib.rs" [[bench]] name = "my_benchmark" path = "benches/my_benchmark.rs" harness = false [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.rand] version = "0.8" [dev-dependencies.serde_json] version = "1.0" [features] serde = ["dep:serde"]