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