-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
62 lines (54 loc) · 1.82 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "saltlick"
version = "0.5.0"
authors = ["Nick Stevens <[email protected]>"]
edition = "2018"
description = "A library for encrypting and decrypting file streams using libsodium"
documentation = "https://docs.rs/saltlick"
homepage = "https://github.com/saltlick-crypto/saltlick-rs"
repository = "https://github.com/saltlick-crypto/saltlick-rs"
keywords = ["async", "cryptography", "libsodium", "security", "streaming"]
categories = ["cryptography", "filesystem"]
license = "Apache-2.0 OR MIT"
[badges]
travis-ci = { repository = "saltlick-crypto/saltlick-rs", branch = "master" }
codecov = { repository = "saltlick-crypto/saltlick-rs", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "saltlick-crypto/saltlick-rs" }
is-it-maintained-open-issues = { repository = "saltlick-crypto/saltlick-rs" }
maintenance = { status = "actively-developed" }
[dependencies]
async-stream = { version = "0.3", optional = true }
byteorder = "1.3"
bytes = "1"
futures = { version = "0.3", optional = true }
lazy_static = "1.0"
pem = "3"
pin-project-lite = { version = "0.2", optional = true }
simple_asn1 = "0.6"
sodiumoxide = "0.2.3" # 0.2.3 required for `(push|pull)_to_vec`
strum = "0.26"
strum_macros = "0.26"
thiserror = "1.0"
tokio = { version = "1", optional = true }
[dev-dependencies]
async-stream = "0.3"
proptest = "1"
rand = "0.8"
rand_xorshift = "0.3"
tempdir = "0.3"
tokio-stream = "0.1"
[dev-dependencies.tokio]
version = "1"
features = ["fs", "io-util", "macros", "rt-multi-thread"]
[features]
default = []
io-async = ["async-stream", "futures", "pin-project-lite", "tokio"]
proptest-tests = []
[[example]]
name = "simple"
[[example]]
name = "simple_async"
required-features = ["io-async"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]