# 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] name = "is-dev" version = "0.1.0" authors = ["Joseph R. Quinn "] description = "A simple macro to determine if an environment is\na \"development\" environment.\n\nBuilt because some of us (me) are lazy and don't feel like\ncopy-pasting the same check for development environments over and over\nagain.\n\n:heart:\n\nEx:\n```\n#[macro_use] extern crate is_dev;\n\nfn test_is_dev() {\n let e: bool = is_dev!(\"ENV\", \"development\");\n assert!(e);\n}\n```\n" homepage = "https://github.com/quinnjr/is-dev-rs" keywords = ["development", "environment", "helper"] categories = ["development-tools"] license = "ISC" [badges.maintenance] status = "actively-developed" [badges.travis-ci] branch = "master" repository = "quinnjr/is-dev-rs"