-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
55 lines (48 loc) · 1.56 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
[package]
name = "nekoton-wasm"
version = "1.4.2"
edition = "2021"
authors = ["Ivan Kalinin <[email protected]>"]
repository = "https://github.com/broxus/nekoton-wasm"
description = "Nekoton bindings for WASM"
license-file = "LICENSE"
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = true
panic = "abort"
incremental = false
codegen-units = 1
opt-level = "z"
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-Oz", "--enable-mutable-globals"]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.13"
getrandom = { version = "0.2", features = ["js"] }
gloo-utils = "0.2.0"
hex = "0.4"
js-sys = "0.3"
num-bigint = "0.4"
num-traits = "0.2"
rand = { version = "0.8", features = ["getrandom"] }
serde = "1.0"
sha2 = "0.9.9"
thiserror = "1.0"
tokio = { version = "1", features = ["sync"] }
wasm-bindgen = { version = "0.2.93", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.43"
zeroize = "1"
ed25519-dalek = { git = "https://github.com/broxus/ed25519-dalek.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi.git" }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git", features = ["venom"] }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
ton_executor = { git = "https://github.com/broxus/ton-labs-executor.git" }
[dependencies.nt]
package = "nekoton"
git = "https://github.com/broxus/nekoton.git"
branch = "master"
features = ["web", "gql_transport", "jrpc_transport", "proto_transport", "extended_models", "non_threadsafe"]
[patch.crates-io]
hmac-drbg = { git = "https://github.com/Rexagon/rust-hmac-drbg" }