-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
34 lines (29 loc) · 1 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
[package]
name = "win-crypto-ng"
version = "0.5.1"
authors = ["Émile Grégoire <[email protected]>", "Igor Matuszewski <[email protected]>"]
edition = "2021"
description = "Safe bindings to Windows Cryptography API: Next Generation"
repository = "https://github.com/emgre/win-crypto-ng"
documentation = "https://docs.rs/crate/win-crypto-ng"
readme = "README.md"
keywords = ["cng", "windows", "cryptoapi"]
categories = ["api-bindings", "os::windows-apis", "cryptography"]
license = "BSD-3-Clause"
rust-version = "1.60"
[badges]
maintenance = { status = "experimental" }
[dependencies]
winapi = { version = "0.3", features = ["bcrypt", "ntstatus", "winerror"] }
zeroize = { version = "1.1", optional = true }
rand_core = { version = ">= 0.5, <0.7", optional = true }
cipher = { version = "0.4.4", optional = true }
doc-comment = "0.3"
[dev-dependencies]
doc-comment = "0.3"
[features]
default = ["zeroize"]
rand = ["rand_core"]
block-cipher = ["cipher"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"