1[package]
2name = "subtle"
3# Before incrementing:
4# - update CHANGELOG
5# - update html_root_url
6# - update README if necessary by semver
7# - if any updates were made to the README, also update the module documentation in src/lib.rs
8version = "2.5.0"
9edition = "2018"
10authors = ["Isis Lovecruft <isis@patternsinthevoid.net>",
11 "Henry de Valence <hdevalence@hdevalence.ca>"]
12readme = "README.md"
13license = "BSD-3-Clause"
14repository = "https://github.com/dalek-cryptography/subtle"
15homepage = "https://dalek.rs/"
16documentation = "https://docs.rs/subtle"
17categories = ["cryptography", "no-std"]
18keywords = ["cryptography", "crypto", "constant-time", "utilities"]
19description = "Pure-Rust traits and utilities for constant-time cryptographic implementations."
20exclude = [
21 "**/.gitignore",
22 ".travis.yml",
23]
24
25[badges]
26travis-ci = { repository = "dalek-cryptography/subtle", branch = "master"}
27
28[dev-dependencies]
29rand = { version = "0.8" }
30
31[features]
32const-generics = []
33core_hint_black_box = []
34default = ["std", "i128"]
35std = []
36i128 = []
37# DEPRECATED: As of 2.4.1, this feature does nothing.
38nightly = []
39