-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (34 loc) · 919 Bytes
/
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
[package]
name = "stellar-rpc-client"
description = "Stellar RPC client for rust"
homepage = "https://github.com/stellar/soroban-rpc"
repository = "https://github.com/stellar/soroban-rpc"
authors = ["Stellar Development Foundation <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
version = "22.0.0-rc.1"
edition = "2021"
rust-version = "1.74.0"
autobins = false
[lib]
crate-type = ["rlib"]
[dependencies]
stellar-strkey = "0.0.9"
stellar-xdr = { version = "=22.0.0-rc.1.1", features = ["curr", "std", "serde", "base64"] }
termcolor = "1.1.3"
termcolor_output = "1.0.1"
clap = { version = "4.1.8", features = ["derive"] }
serde_json = "1.0.82"
serde-aux = "4.1.2"
itertools = "0.10.0"
hex = "0.4.3"
thiserror = "1.0.46"
serde = "1.0.82"
serde_with = "3.9.0"
tokio = "1.28.1"
sha2 = "0.10.7"
tracing = "0.1.40"
# networking
jsonrpsee-http-client = "0.20.1"
jsonrpsee-core = "0.20.1"
http = "1.0.0"