-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (36 loc) · 1.13 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
[package]
name = "x3dh-ke"
version = "0.1.5"
edition = "2018"
authors = ["Hannes Furmans"]
license = "MIT"
description = "Implementation of X3DH"
homepage = "https://github.com/Decentrailzed-Communication-System/x3dh-ke"
repository = "https://github.com/Decentrailzed-Communication-System/x3dh-ke"
readme = "README.md"
keywords = ["signal", "crypto", "cryptographie", "x3dh"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
rand_core = {version = "0.6.2"}
getrandom = "0.2.3"
p256 = {version = "0.9.0", features = ["zeroize", "ecdsa", "ecdh", "arithmetic", "pem"]}
base64ct = "1.1.1"
hkdf = "0.11.0"
sha2 = "0.9.5"
serde = {version = "1.0.126", optional = true}
bincode = {version = "1.3.3", optional = true}
serde_bytes = {version = "0.11.5", optional = true}
const-oid = "0.9.1"
[dev-dependencies]
crossbeam-deque = "0.8.1"
crossbeam-epoch = "0.9.5"
criterion = "0.3.5"
[[bench]]
name = "x3dh_bench"
harness = false
[features]
default = ["bytes"]
bytes = ["serde/derive", "serde", "bincode", "serde_bytes"]
wasm = ["getrandom/js"]