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
2af47af
commit 3625df8
Showing
11 changed files
with
253 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Oops, something went wrong.