[package] name = "libss" version = "0.1.0" authors = ["Ali Mousa "] edition = "2018" # A short blurb about the package. This is not rendered in any format when # uploaded to crates.io (aka this is not markdown). description = "libss is a Rust library for secret sharing." # 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. repository = "https://github.com/amousa11/libss" # 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. # crates.io will render this file and place the result on the crate's page. 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 = ["secret-sharing", "gf256", "shamir", "threshold", "cryptography"] # 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 = ["cryptography"] # This is an SPDX 2.1 license expression for this package. Currently # crates.io will validate the license provided against a whitelist of # known license and exception identifiers from the SPDX license list # 2.4. Parentheses are not currently supported. # # Multiple licenses can be separated with a `/`, although that usage # is deprecated. Instead, use a license expression with AND and OR # operators to get more explicit semantics. license = "MIT" # Optional specification of badges to be displayed on crates.io. # # - The badges pertaining to build status that are currently available are # Appveyor, CircleCI, GitLab, Azure DevOps and TravisCI. # - Available badges pertaining to code test coverage are Codecov and # Coveralls. # - There are also maintenance-related badges based on isitmaintained.com # which state the issue resolution time, percent of open issues, and future # maintenance intentions. # # If a `repository` key is required, this refers to a repository in # `user/repo` format. [badges] # Travis CI: `repository` in format "/" is required. # `branch` is optional; default is `master` travis-ci = { repository = "amousa11/libss", branch = "master" } # Maintenance: `status` is required. Available options are `actively-developed`, # `passively-maintained`, `as-is`, `experimental`, `looking-for-maintainer`, # `deprecated`, and the default `none`, which displays no badge on crates.io. maintenance = { status = "actively-developed" } [dev-dependencies] "quickcheck" = "0.8.2" "criterion" = "0.2" [[bench]] name = "bench" harness = false [profile.release] opt-level = 3 lto = "thin" incremental = true [profile.bench] opt-level = 3 debug = false rpath = false lto = "thin" incremental = true debug-assertions = false [dependencies] "rand" = "0.4.0" "subtle" = "2.1.0"