-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
63 lines (54 loc) · 1.28 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
56
57
58
59
60
61
62
[package]
name = "waves-rust"
version = "0.2.6"
edition = "2021"
rust-version = "1.56"
authors = ["Waves Labs <admin@waveslabs.com>", "Alexandr Devyatkin <novealx@gmail.com>"]
description = """
A Rust library for interacting with the Waves blockchain.
Supports node interaction, offline transaction signing and creating addresses and keys.
"""
readme = "README.md"
keywords = [
"blockchain",
"async",
"waves",
"cryptography",
]
categories = [
"cryptography"
]
repository = "https://github.com/wavesplatform/waves-rust"
license = "MIT"
[dependencies]
# crypto
bs58 = "0.4.0"
blake2 = "0.10.4"
sha3 = "0.10.2"
sha2 = "0.10.2"
# todo: use root crate when its dependencies will be resolved
curve25519-dalek = { git = "https://github.com/nazar-pc/curve25519-dalek", version = "=4.0.0-pre.2", tag = "4.0.0-pre.2"}
ed25519-dalek = "1.0.1"
base64 = "0.13.0"
hex = "0.4.3"
# network
reqwest = { version = "0.11.11", features = ["json"] }
tokio = { version = "1.12.0", features = ["full"] }
serde_json = "1.0.82"
regex = "1.6.0"
urlencoding = "2.1.0"
url = "2.2.2"
# protobuf
prost = "0.11.0"
tonic = "0.8.0"
# util
thiserror = "1.0.32"
rand = "0.8.5"
[lib]
doctest = false
[build-dependencies]
tonic-build = "0.8"
protobuf-src = "1.0.5+3.19.3"
[[test]]
name = "tests"
path = "tests/main.rs"