# 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 = "2018" name = "rust_intervals" version = "0.4.0" authors = ["Emmanuel Briot "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Intervals arithmetic with any combination of open, closed or infinite bounds, along with operations like intersection, convex hull, union, difference,..." documentation = "https://docs.rs/rust_intervals/" readme = "README.md" keywords = [ "intervals", "open-closed", "ranges", "intersection", "convex_hull", ] license = "MIT" repository = "https://github.com/briot/rust_intervals" [lib] name = "rust_intervals" path = "src/lib.rs" [dependencies.chrono] version = "0.4.24" optional = true [dependencies.ron] version = "0.8" optional = true [dependencies.rust_decimal] version = "1.0" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dependencies.serde_json] version = "1.0" optional = true [dev-dependencies] [features] default = ["std"] rust_decimal = ["dep:rust_decimal"] serde = ["dep:serde"] serde_tests = [ "serde", "dep:serde_json", "dep:ron", ] std = []