Skip to content

Commit

Permalink
update cargo.toml with workplace
Browse files Browse the repository at this point in the history
  • Loading branch information
musitdev committed Oct 10, 2023
1 parent 94fefb8 commit 376bde0
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 62 deletions.
63 changes: 22 additions & 41 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ serde_json = "1.0.96"
bincode = "1.3.3"
bs58 = "0.4.0"
base64 = "0.21.0"
borsh = "0.10.3"
thiserror = "1.0.40"
futures = "0.3.28"
bytes = "1.4.0"
Expand Down
37 changes: 16 additions & 21 deletions stake_vote/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,17 @@ license = "AGPL"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.71"
bincode = "1.3.3"
borsh = "0.10.3"
bs58 = "0.4.0"
futures = { version = "0.3.28", default-features = false }
futures-util = "0.3.28"
hex = "0.4.3"
log = "0.4.17"
tracing-subscriber = "0.3.16"
tokio = { version = "1.*", features = ["full"] }
nom = "7.1.3"
itertools = "0.11.0"

reqwest = "0.11"
serde = "1.0"
serde_json = "1.0"
thiserror = "1.0.40"

yellowstone-grpc-client = "1.11.0+solana.1.16.14"
yellowstone-grpc-proto = "1.10.0+solana.1.16.14"

anyhow = { workspace = true }
bincode = { workspace = true }
borsh = { workspace = true }
bs58 = { workspace = true }
log = { workspace = true }
itertools = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
yellowstone-grpc-client = { workspace = true }
yellowstone-grpc-proto = { workspace = true }
solana-sdk = { workspace = true }
solana-client = { workspace = true }
solana-ledger = { workspace = true }
Expand All @@ -41,3 +31,8 @@ solana-account-decoder = { workspace = true }
solana-program = { workspace = true }

solana-lite-rpc-core = { workspace = true }

futures = { version = "0.3.28", default-features = false }
tokio = { version = "1.28.2", features = ["full"]}
futures-util = "0.3.28"

0 comments on commit 376bde0

Please sign in to comment.