-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
89 lines (67 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "desktop_wallet"
version = "0.1.0"
authors = ["Concordium AG <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[profile.dev]
opt-level = 3
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wasm-bindgen = { version = "0.2.68", features = ["serde-serialize"] }
libc = "0.2"
pairing = "0.15"
anyhow = "1.0"
ed25519-dalek = {version = "=1.0.0", features = ["serde"] }
hex = "0.4"
ff = "0.5"
either = "1.6"
sha2 = "0.9"
rand = "=0.7"
console_error_panic_hook = "0.1.6"
[dependencies.keygen_bls]
path = "deps/concordium-base/rust-src/keygen_bls"
version = "2"
[dependencies.id]
path = "deps/concordium-base/rust-src/id"
version = "0"
[dependencies.curve_arithmetic]
path = "deps/concordium-base/rust-src/curve_arithmetic"
version = "0"
[dependencies.dodis_yampolskiy_prf]
path = "deps/concordium-base/rust-src/dodis_yampolskiy_prf"
version = "0"
[dependencies.ffi_helpers]
path = "deps/concordium-base/rust-src/ffi_helpers"
version = "0"
[dependencies.crypto_common]
path = "deps/concordium-base/rust-src/crypto_common"
version = "0"
[dependencies.pedersen_scheme]
path = "deps/concordium-base/rust-src/pedersen_scheme"
version = "0"
[dependencies.ps_sig]
path = "deps/concordium-base/rust-src/ps_sig"
version = "0"
[dependencies.encrypted_transfers]
path = "deps/concordium-base/rust-src/encrypted_transfers"
version = "0"
[dependencies.elgamal]
path = "deps/concordium-base/rust-src/elgamal"
version = "0"
[dependencies.eddsa_ed25519]
path = "deps/concordium-base/rust-src/eddsa_ed25519"
version = "0"
[dependencies.random_oracle]
path = "deps/concordium-base/rust-src/random_oracle"
version = "0"
[dependencies.aggregate_sig]
path = "deps/concordium-base/rust-src/aggregate_sig"
version = "0"
[lib]
name = "desktop_wallet"
crate-type = ["cdylib"]
path = "rust-src/lib.rs"