-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.04 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
[package]
authors = [
'ashWhiteHat<[email protected]>',
'KiriosK<[email protected]>'
]
name = "she-elgamal"
description = 'lifted elgamal encryption implementation'
version = "0.0.12"
edition = "2021"
license = "Apache-2.0"
homepage = 'https://github.com/KogarashiNetwork/Kogarashi/'
repository = 'https://github.com/KogarashiNetwork/Kogarashi/'
readme = 'README.md'
categories = ["cryptography"]
keywords = ["zkp", "blockchain", "elliptic-curve"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[dependencies]
zkstd = { version = "0.0.22", default-features = false }
jub-jub = { version = "0.0.20", default-features = false }
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.102", default-features = false, features = ["derive"] }
num-traits = { version = "0.2.15", default-features = false }
[dev-dependencies]
rand = { version = "0.8" }
rand_core = { version="0.6.4", default-features = false }