forked from dalek-cryptography/subtle
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
33 lines (30 loc) · 911 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "subtle-ng"
# Before incrementing:
# - update CHANGELOG
# - update html_root_url
# - update README if necessary by semver
version = "2.5.0"
authors = ["Isis Lovecruft <[email protected]>",
"Henry de Valence <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/dalek-cryptography/subtle"
homepage = "https://dalek.rs/"
documentation = "https://docs.rs/subtle"
categories = ["cryptography", "no-std"]
keywords = ["cryptography", "crypto", "constant-time", "utilities"]
description = "Pure-Rust traits and utilities for constant-time cryptographic implementations."
exclude = [
"**/.gitignore",
".travis.yml",
]
[badges]
travis-ci = { repository = "dalek-cryptography/subtle", branch = "master"}
[dev-dependencies]
rand = { version = "0.7" }
[features]
default = ["std", "i128"]
std = []
i128 = []
nightly = []