-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
32 lines (24 loc) · 821 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
[package]
name = "secrets"
version = "1.2.0"
edition = "2018"
authors = ["Stephen Touset <[email protected]>"]
description = "Protected-access memory for cryptographic secrets"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/stouset/secrets"
repository = "https://github.com/stouset/secrets"
documentation = "https://stouset.github.io/secrets"
readme = "README.md"
keywords = [ "crypto", "cryptography", "allocator" ]
[dependencies]
libc = '0'
libsodium-sys = { version = '0.2', optional = true }
[target.'cfg(target_family = "unix")'.build-dependencies]
pkg-config = '0.3'
[target.'cfg(target_family = "windows")'.build-dependencies]
vcpkg = '0.2'
[dev-dependencies]
libsodium-sys = '0.2'
[features]
allow-coredumps = []
use-libsodium-sys = ["libsodium-sys"]