-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (41 loc) · 1.1 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
[package]
name = "zilliqa-rs"
version = "0.3.2"
edition = "2021"
description = "A Rust SDK for Zilliqa blockchain"
license = "MIT"
authors = ["Saeed Dadkhah <[email protected]>"]
repository = "https://github.com/zilliqa/zilliqa-rs/"
documentation = "https://docs.rs/zilliqa-rs"
[lib]
path = "src/lib.rs"
[build-dependencies]
anyhow = "1.0.79"
convert_case = "0.6.0"
scilla-parser = "1.0.0"
build-print = "0.1.1"
[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
bech32 = "0.9.1"
eth-keystore = "0.5.0"
hex = "0.4.3"
jsonrpsee = { version = "0.24.7", features = ["http-client", "macros"] }
k256 = "0.13.3"
primitive-types = { version = "0.12.2", features = ["serde"] }
prost = "0.12.3"
rand = "0.8.5"
regex = "1.10.3"
serde = { version = "1.0.195", features = ["derive", "rc"] }
serde-aux = "4.4.0"
serde_bytes = "0.11.14"
serde_json = { version = "1.0.111", features = ["raw_value"] }
sha2 = "0.10.8"
thiserror = "1.0.56"
tokio = { version = "1.35", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
url = "2.5.0"
[dev-dependencies]
paste = "1.0.14"
claim = "0.5"
test-context = "0.1.4"