forked from jito-labs/json-rpc-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 735 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "jito-block-engine-json-rpc-client"
version = "0.1.0"
edition = "2021"
description = "A sample rpc client to generate and send requests to jito block engine server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.68"
bincode = "1.3.3"
log = "0.4.17"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
solana-rpc-client = "=1.17"
solana-rpc-client-api = "=1.17"
solana-sdk = "=1.17"
solana-transaction-status = "=1.17"
thiserror = "1.0.40"
tokio = { version = "1", features = ["rt-multi-thread"] }
[dev-dependencies]
solana-program = "=1.17"
[workspace]