-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 774 Bytes
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
[package]
name = "wavesplatform"
version = "0.3.2"
authors = ["peterz <peterz@rambler.ru>", "DEADBLACKCLOVER <deadblackclover@protonmail.com>"]
description = "Library to work with Waves blockchain (https://waves.tech/)"
edition = "2018"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/waves-rust/waves-lib-rust"
repository = "https://github.com/waves-rust/waves-lib-rust"
keywords = ["waves", "blockchain"]
[dependencies]
base58 = "0.2.0"
rand = "0.8.5"
regex = "1.6.0"
tiny-bip39 = "1.0.0"
blake2 = "0.9.2"
curve25519-dalek = "2.1.3"
ed25519-dalek = "2.0.0"
sha2 = "0.8.0"
sha3 = "0.8.0"
reqwest = { version = "0.11.12", features = ["json"] }
serde = { version = "1.0.145", features = ["derive"] }
tokio = { version = "1.21.2", features = ["full"] }