-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
39 lines (33 loc) · 888 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
34
35
36
37
[package]
name = "double-ratchet"
version = "0.1.0"
authors = ["S.R. Verschoor <[email protected]>"]
edition = "2018"
description = "Double Ratchet key management for exchanging encrypted messages between two parties."
repository = "https://github.com/sebastianv89/double-ratchet"
readme = "README.md"
keywords = ["double-ratchet", "forward-secrecy", "future-secrecy"]
categories = ["cryptography", "no-std"]
license = "BSD-3-Clause"
[badges]
travis-ci = {repository = "sebastianv89/double-ratchet"}
[dependencies]
rand_core = "0.4"
hashbrown = "0.1"
[dev-dependencies]
aes = "0.3"
block-modes = "0.3"
clear_on_drop = "0.2"
generic-array = "0.12"
hkdf = "0.7"
hmac = "0.7"
rand_os = "0.1"
sha2 = "0.8"
subtle = "2"
x25519-dalek = "0.5"
[features]
default = ["std"]
std = []
# Allow doctests with mock objects
# See: https://github.com/rust-lang/rust/issues/45599
test = []