[package] name = "iron_json" version = "1.0.0" authors = ["Chris Cates "] description = "Iron JSON: A simplified approach to parsing JSON in Iron routes." # These URLs point to more information about the repository. These are # intended to be webviews of the relevant data, not necessarily compatible # with VCS tools and the like. documentation = "https://github.com/ChrisCates/iron_json" homepage = "https://github.com/ChrisCates/iron_json" repository = "https://github.com/ChrisCates/iron_json" # This points to a file in the repository (relative to this `Cargo.toml`). The # contents of this file are stored and indexed in the registry. readme = "../README.md" # This is a list of up to five keywords that describe this crate. Keywords # are searchable on crates.io, and you may choose any words that would # help someone find this crate. keywords = ["iron", "json", "parser"] # This is a list of up to five categories where this crate would fit. # Categories are a fixed list available at crates.io/category_slugs, and # they must match exactly. categories = ["api-bindings"] # This is a string description of the license for this package. Currently # crates.io will validate the license provided against a whitelist of known # license identifiers from http://spdx.org/licenses/. Multiple licenses can be # separated with a `/`. license = "GPL-3.0" # If a project is using a nonstandard license, then this key may be specified in # lieu of the above key and must point to a file relative to this manifest # (similar to the readme key). license-file = "../LICENSE" [dependencies] iron = "0.5.*" json = "0.11.*" bodyparser = "0.5.*"