forked from stellar/stellar-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create soroban-rpc crate (#21)
* feat: create soroban-rpc crate * chore: add doc strings
- Loading branch information
1 parent
e58f800
commit be4a543
Showing
12 changed files
with
642 additions
and
265 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[package] | ||
name = "soroban-rpc" | ||
description = "Soroban RPC client for rust" | ||
homepage = "https://github.com/stellar/soroban-tools" | ||
repository = "https://github.com/stellar/soroban-tools" | ||
authors = ["Stellar Development Foundation <info@stellar.org>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
version.workspace = true | ||
edition = "2021" | ||
rust-version = "1.70" | ||
autobins = false | ||
|
||
|
||
[lib] | ||
crate-type = ["rlib"] | ||
|
||
|
||
[dependencies] | ||
soroban-sdk = { workspace = true } | ||
soroban-spec-tools = { workspace = true } | ||
|
||
soroban-env-host = { workspace = true } | ||
stellar-strkey = { workspace = true } | ||
stellar-xdr = { workspace = true, features = ["curr", "std", "serde"] } | ||
soroban-spec = { workspace = true } | ||
|
||
|
||
termcolor = { workspace = true } | ||
termcolor_output = { workspace = true } | ||
clap = { workspace = true } | ||
|
||
serde_json = { workspace = true } | ||
serde-aux = { workspace = true } | ||
itertools = { workspace = true } | ||
ethnum = { workspace = true } | ||
hex = { workspace = true } | ||
wasmparser = { workspace = true } | ||
base64 = { workspace = true } | ||
thiserror = { workspace = true } | ||
serde = { workspace = true } | ||
tokio = { workspace = true } | ||
sha2 = { workspace = true } | ||
ed25519-dalek = { workspace = true } | ||
tracing = { workspace = true } | ||
|
||
|
||
# networking | ||
jsonrpsee-http-client = { workspace = true } | ||
jsonrpsee-core = { workspace = true } | ||
http = { workspace = true } | ||
|
||
# soroban-ledger-snapshot = { workspace = true } | ||
# soroban-sdk = { workspace = true } | ||
# sep5 = { workspace = true } | ||
|
||
|
||
[dev-dependencies] | ||
which = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# soroban-rpc | ||
|
||
Tools and utilities for soroban rpc. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.