-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (52 loc) · 1.99 KB
/
Cargo.toml
File metadata and controls
60 lines (52 loc) · 1.99 KB
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
[package]
name = "nekoton-python"
version = "0.1.24"
edition = "2021"
[lib]
name = "nekoton"
crate-type = ["cdylib"]
[dependencies]
ahash = "0.8"
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.21.0"
dashmap = "5.4"
hex = "0.4"
hmac = "0.11"
log = "0.4"
num-bigint = "0.4"
num-traits = "0.2"
once_cell = "1.17"
parking_lot = "0.12"
pbkdf2 = "0.9"
pyo3 = { version = "0.18.0", features = ["extension-module", "num-bigint"] }
pyo3-asyncio = { version = "0.18", features = ["attributes", "tokio-runtime"] }
pyo3-log = { version = "0.8.1" }
rand = "0.8"
sha2 = "0.9"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.93"
tokio = { version = "1", features = ["sync", "macros", "rt-multi-thread"] }
tokio-util = "0.7"
ed25519-dalek = { git = "https://github.com/broxus/ed25519-dalek.git" }
tiny-bip39 = { git = "https://github.com/broxus/tiny-bip39.git", default-features = false }
tiny-hderive = { git = "https://github.com/broxus/tiny-hderive.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" }
ton_vm = { git = "https://github.com/broxus/ton-labs-vm.git" }
everscale-asm = { git = "https://github.com/broxus/everscale-asm.git", rev = "bbd284a72676300c89ab074bd39cd91fde21d597" }
everscale-types = { version = "0.1.2", default-features = false }
[dependencies.nt]
package = "nekoton"
git = "https://github.com/broxus/nekoton.git"
features = ["gql_transport", "jrpc_transport", "proto_transport"]
[dependencies.nekoton-transport]
git = "https://github.com/broxus/nekoton.git"
features = ["gql_transport", "jrpc_transport", "proto_transport"]
[patch.crates-io]
hmac-drbg = { git = "https://github.com/Rexagon/rust-hmac-drbg" }
everscale-types = { git = "https://github.com/broxus/everscale-types.git", rev = "b55da379aba126d4496c88bc7b8cc7af553ab37a" }