-
Notifications
You must be signed in to change notification settings - Fork 117
/
Cargo.toml
32 lines (29 loc) · 971 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 = "jf-aead"
version = "0.1.0"
description = "Authenticated encryption with associated data (AEAD)."
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
[dependencies]
ark-serialize = { workspace = true }
ark-std = { workspace = true }
chacha20poly1305 = { version = "0.10.1", default-features = false, features = [
"alloc",
"rand_core",
] }
crypto_kx = { version = "0.2.1", features = ["serde"] }
derivative = { workspace = true }
displaydoc = { workspace = true }
serde = { workspace = true }
[dev-dependencies]
bincode = "1.3"
jf-utils = { version = "0.4.4", git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.5" }
rand_chacha = { workspace = true }
[features]
default = []
std = ["ark-serialize/std", "ark-std/std", "chacha20poly1305/std"]