-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
26 lines (24 loc) · 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
[package]
name = "ergo-node-interface"
version = "0.4.1"
authors = ["Robert Kornacki <11645932+robkorn@users.noreply.github.com>"]
edition = "2018"
license = "MIT"
description = "A library which makes interacting with and using an Ergo Node simple for dApp developers."
repository = "https://github.com/ergoplatform/ergo-node-interface-rust"
readme = "README.md"
keywords = ["ergo", "blockchain", "node-interface", "dApp"]
categories = ["cryptography::cryptocurrencies"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
json = "0.12.4"
openssl = { version = "0.10", features = ["vendored"] }
reqwest = { version = "0.11.4", features = ["blocking"] }
serde = "1.0"
serde_json = "1.0"
ergo-lib = "0.27.1"
thiserror = "1.0.22"
blake2b_simd = "0.5.11"
base16 = "0.2.1"
yaml-rust = "0.4.4"
serde_with = { version = "1.14", features = ["json"] }