# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "woe" version = "0.1.8" authors = ["Andrew Lilley Brinker "] description = " A Result type that differentiates between local errors (which can be handled)\n and fatal errors (which cannot)\n" readme = "README.md" keywords = ["result", "error-handling"] categories = ["rust-patterns"] license = "MIT OR Apache-2.0" repository = "https://github.com/alilleybrinker/woe/" [package.metadata.docs.rs] all-features = true [dependencies.either] version = "1.5" optional = true [features] default = ["either_methods"] either_methods = ["either"] from_iterator_trait = ["try_trait"] never_type = [] nightly = ["try_trait", "trusted_len", "never_type", "termination_trait", "product_trait", "sum_trait", "from_iterator_trait"] no_std = [] product_trait = ["try_trait"] sum_trait = ["try_trait"] termination_trait = ["never_type"] trusted_len = [] try_trait = []