[dependencies] [profile] [profile.release] lto = true opt-level = 3 [package] authors = ["Human Enginuity "] name = "assayer" version = "0.2.2" # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown). description = "A static (compile-time) validation library for Rust" # These URLs point to more information about the package. These are # intended to be webviews of the relevant data, not necessarily compatible # with VCS tools and the like. documentation = "https://github.com/humanenginuity/assayer/blob/master/README.md" homepage = "https://github.com/humanenginuity/assayer" repository = "https://github.com/humanenginuity/assayer" # This points to a file under the package root (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 = ["validator", "validation", "input_validator", "input_validation", "fluent_validator"] # 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 = ["...", "..."] # 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 = "Apache-2.0/MIT" # 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 = "..." # Optional specification of badges to be displayed on crates.io. The badges # pertaining to build status that are currently available are Appveyor, CircleCI, # GitLab, and TravisCI. Available badges pertaining to code test coverage are # Codecov and Coveralls. There are also maintenance-related badges which state # the issue resolution time, percent of open issues, and future maintenance # intentions. [badges] # Appveyor: `repository` is required. `branch` is optional; default is `master` # `service` is optional; valid values are `github` (default), `bitbucket`, and # `gitlab`. #appveyor = { repository = "...", branch = "master", service = "github" } # Circle CI: `repository` is required. `branch` is optiona; default is `master` #circle-ci = { repository = "...", branch = "master" } # GitLab: `repository` is required. `branch` is optional; default is `master` #gitlab = { repository = "...", branch = "master" } # Travis CI: `repository` in format "/" is required. # `branch` is optional; default is `master` #travis-ci = { repository = "...", branch = "master" } # Codecov: `repository` is required. `branch` is optional; default is `master` # `service` is optional; valid values are `github` (default), `bitbucket`, and # `gitlab`. #codecov = { repository = "...", branch = "master", service = "github" } # Coveralls: `repository` is required. `branch` is optional; default is `master` # `service` is optional; valid values are `github` (default) and `bitbucket`. #coveralls = { repository = "...", branch = "master", service = "github" } # Is it maintained resolution time: `repository` is required. #is-it-maintained-issue-resolution = { repository = "..." } # Is it maintained percentage of open issues: `repository` is required. #is-it-maintained-open-issues = { repository = "..." } # Maintenance: `status` is required Available options are `actively-developed`, # `passively-maintained`, `as-is`, `none`, `experimental`, `looking-for-maintainer` # and `deprecated`. #maintenance = { status = "actively-developed" }