-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 723 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 723 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
26
27
28
[package]
name = "solana-relayer-adapter-rust"
version = "3.3.2"
edition = "2024"
authors = ["nakao95911@gmail.com"]
license = "Apache-2.0"
description = "solana-relayer-adapter-rust"
repository = "https://github.com/vvizardev/solana-relayer-adapter-rust"
[dependencies]
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.98"
futures = "0.3.31"
ping = "0.6.1"
reqwest = { version = "0.12.15", features = ["json", "blocking"] }
serde_json = "1.0.140"
solana-program = "2.2.1"
solana-client = "2.2.1"
solana-sdk = "2.2.1"
dotenvy = "0.15.7"
bincode = "1.3.3"
bs64 = "0.1.2"
serde = { version = "1.0.219", features = ["derive"] }
once_cell = "1.19.0"
[lib]
name = "solana_relayer_adapter_rust"
path = "src/lib.rs"