-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.27 KB
/
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
34
35
36
37
[package]
name = "winternitz"
version = "0.1.0-pre"
authors = ["Noah Vesely <[email protected]>"]
description = "An implementation of the WOTS-T one-time signature scheme."
license = "LGPLv3"
documentation = "https://nvesely.github.io/winternitz/winternitz/index.html"
repository = "https://github.com/nvesely/winternitz"
keywords = ["crypto", "cryptography", "winternitz", "signature-scheme",
"one-time signature-scheme", "otss", "wots", "wots+", "wots-t"]
categories = ["cryptography"]
readme = "README.md"
exclude = [
"**/.gitignore",
".travis.yml",
".bors.toml",
"Makefile",
]
[badges]
travis-ci = { repository = "nvesely/winternitz", branch = "master"}
[dependencies]
libc = { version = "^0.2.40", default-features = false }
libsodium-sys = { version = "^0.0.16", default-features = false }
sodiumoxide = { version = "^0.0.16", default-features = false }
subtle = { version = "^0.6", features = ["nightly"], default-features = false }
[package.metadata.release]
sign-commit = true
upload-doc = true
doc-branch = "gh-pages"
pre-release-commit-message = "Release version {{version}}."
pro-release-commit-message = "Start next development iteration {{version}}."
tag-message = "Release version {{version}}."
doc-commit-message = "Update documentation."
dev-version-ext = "pre"