Skip to content

Commit

Permalink
feat!: remove unneeded logic (#157)
Browse files Browse the repository at this point in the history
* feat!: remove unneeded logic

Including signing and ensure that RPC methods are pure

* fix: clean up Cargo.toml
  • Loading branch information
willemneal authored May 1, 2024
1 parent 87bf642 commit 587a229
Show file tree
Hide file tree
Showing 5 changed files with 190 additions and 621 deletions.
171 changes: 17 additions & 154 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,41 +5,19 @@ members = [
"cmd/soroban-rpc/lib/preflight",
]
default-members = ["cmd/crates/stellar-rpc-client"]
#exclude = ["cmd/crates/soroban-test/tests/fixtures/hello"]

[workspace.package]
version = "21.0.1"
rust-version = "1.74.0"

[workspace.dependencies.soroban-env-host]
version = "=21.0.1"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "27897f6073aec5241d3486690a33b22c80dd0718"
# path = "../rs-soroban-env/soroban-env-host"

[workspace.dependencies.soroban-simulation]
version = "=21.0.1"
# git = "https://github.com/stellar/rs-soroban-env"
# rev = "27897f6073aec5241d3486690a33b22c80dd0718"
# path = "../rs-soroban-env/soroban-simulation"

[workspace.dependencies.soroban-spec]
version = "=21.0.1-preview.1"
# git = "https://github.com/stellar/rs-soroban-sdk"
# rev = "c30bc769e379bef9b94a3ceb464aa78c1185eeb3"
# path = "../rs-soroban-sdk/soroban-spec"

[workspace.dependencies.soroban-sdk]
version = "=21.0.1-preview.1"
# git = "https://github.com/stellar/rs-soroban-sdk"
# rev = "c30bc769e379bef9b94a3ceb464aa78c1185eeb3"


[workspace.dependencies.stellar-xdr]
version = "=21.0.1"
default-features = true
# git = "https://github.com/stellar/rs-stellar-xdr"
# rev = "a80c899c61e869fd00b7b475a4947ab6aaf9dcac"

[workspace.dependencies]
base64 = "0.22.0"
Expand Down
11 changes: 4 additions & 7 deletions cmd/crates/stellar-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,13 @@ crate-type = ["rlib"]


[dependencies]
soroban-sdk = { workspace = true }
soroban-env-host = { workspace = true }
stellar-strkey = "0.0.7"
stellar-xdr = { workspace = true, features = ["curr", "std", "serde"] }
soroban-spec = { workspace = true }
stellar-strkey = "0.0.8"
stellar-xdr = { workspace = true, features = ["curr", "std", "serde", "base64"] }


termcolor = "1.1.3"
termcolor_output = "1.0.1"
clap = { version = "4.1.8", features = ["derive", "env", "deprecated", "string"] }
clap = { version = "4.1.8", features = ["derive"] }
serde_json = "1.0.82"
serde-aux = "4.1.2"
itertools = "0.10.0"
Expand All @@ -34,7 +32,6 @@ thiserror = "1.0.46"
serde = "1.0.82"
tokio = "1.28.1"
sha2 = "0.10.7"
ed25519-dalek = "2.0.0"
tracing = "0.1.40"

# networking
Expand Down
Loading

0 comments on commit 587a229

Please sign in to comment.