-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (37 loc) · 1.26 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
[package]
name = "elrond-sdk-erdrs"
version = "0.2.16"
edition = "2018"
homepage = "https://github.com/bicarus-labs/elrond-sdk-erdrs"
repository = "https://github.com/bicarus-labs/elrond-sdk-erdrs"
documentation = "https://docs.rs/elrond-sdk-erdrs"
license = "MIT"
description = """
Elrond Rust SDK for interacting with the Elrond Network and Smart Contracts.
"""
categories = ["api-bindings"]
keywords = ["elrond", "sdk", "api", "rpc", "tokio"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.12.0", features = ["full"] }
reqwest = { version = "0.11.20", features = ["blocking", "json"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = { version = "1.0.68", features = ["preserve_order"] }
serde_repr = "0.1.7"
anyhow = "1.0.44"
rand = "0.6.0"
bip39 = {version = "2.0.0", features = ["rand_core", "rand"] }
sha2 = "0.9.8"
sha3 = "0.9.1"
hmac = { version = "0.11.0", features = ["std"] }
hex = "0.4.3"
base64 = "0.13.0"
ed25519 = "1.2.0"
pbkdf2 = { version = "0.9.0", default-features = false }
zeroize = "1.4.2"
bech32 = "0.8.1"
itertools = "0.10.1"
pem = "1.0.1"
elrond-codec = "0.16.0"
elrond-codec-derive = "0.16.0"
num-bigint = { version = "0.4.4", features = ["serde"] }