-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 1.66 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
[package]
name = "timelock_wasm_wrapper"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Wasm bidings for the timelock encryption crate"
repository = "https://github.com/ideal-lab5/timelock"
authors = ["Ideal Lab5 <hello@idealabs.network>"]
homepage = "https://idealabs.network"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
crate-type = [
"cdylib",
"rlib",
]
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[dependencies]
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
rand_core = "0.6.4"
timelock = { path = "../timelock", default-features = false }
serde = { version = "1.0.208", features = ["derive", "alloc"] }
serde-big-array = { version = "0.5.1", default-features = false }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.92"
ark-serialize = { version = "0.4.0", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
ark-bls12-381 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-ec = { version = "0.4.0", default-features = false }
getrandom = { version = "0.2", features = ["js"] }
rand_chacha = { version = "0.3.1", default-features = false }
w3f-bls = { version = "0.1.3", default-features = false }
sp-consensus-beefy-etf = { git = "https://github.com/ideal-lab5/idn-sdk.git", features = ["bls-experimental"]}
sha2 = { version = "0.10.2", default-features = false }
pyo3 = { version = "0.23.1", features = ["extension-module", "macros"], default-features = false, optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3.0"
[features]
default = []
python = ["pyo3", "pyo3/abi3"]