Skip to content

Commit

Permalink
Add BanksClient
Browse files Browse the repository at this point in the history
Cherry-picked from solana-labs#10728, but without the changes to solana-tokens
  • Loading branch information
garious committed Aug 20, 2020
1 parent 6c03e6c commit 7d2c27b
Show file tree
Hide file tree
Showing 22 changed files with 1,068 additions and 65 deletions.
113 changes: 111 additions & 2 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ members = [
"bench-tps",
"accounts-bench",
"banking-bench",
"banks-client",
"banks-interface",
"banks-server",
"clap-utils",
"cli-config",
"client",
Expand Down
30 changes: 30 additions & 0 deletions banks-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "solana-banks-client"
version = "1.3.5"
description = "Solana banks client"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
edition = "2018"

[dependencies]
async-trait = "0.1.36"
bincode = "1.3.1"
futures = "0.3"
solana-banks-interface = { path = "../banks-interface", version = "1.3.5" }
solana-sdk = { path = "../sdk", version = "1.3.5" }
tarpc = { version = "0.21.0", features = ["full"] }
tokio = "0.2"
tokio-serde = { version = "0.6", features = ["bincode"] }

[dev-dependencies]
solana-runtime = { path = "../runtime", version = "1.3.5" }
solana-banks-server = { path = "../banks-server", version = "1.3.5" }

[lib]
crate-type = ["lib"]
name = "solana_banks_client"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

0 comments on commit 7d2c27b

Please sign in to comment.