This commit is contained in:
William
2025-02-13 20:44:20 +08:00
parent 998d843bac
commit 53e1e94da2
9 changed files with 862 additions and 527 deletions
+11 -6
View File
@@ -13,9 +13,12 @@ readme = "README.md"
crate-type = ["cdylib", "rlib"]
[dependencies]
solana-sdk = "2.1.7"
solana-client = "2.1.7"
solana-transaction-status = "2.1.7"
solana-sdk = "2.1.13"
solana-client = "2.1.13"
solana-transaction-status = "2.1.13"
solana-rpc-client = "2.1.13"
solana-rpc-client-api = "2.1.13"
solana-program = "2.1.13"
spl-token = "7.0.0"
spl-associated-token-account = "6.0.0"
mpl-token-metadata = "5.1.0"
@@ -30,11 +33,11 @@ bs58 = "0.5.1"
rand = "0.9.0"
bincode = "1.3.3"
anyhow = "1.0.90"
reqwest = { version = "0.11.27", features = ["json"] }
reqwest = { version = "0.12.12", features = ["json"] }
tonic = { version = "0.12.3", features = ["tls", "tls-webpki-roots", "tls-roots"] }
tokio = { version = "1.42.0" , features = ["full", "rt-multi-thread"]}
yellowstone-grpc-client = { version = "4.1.0" }
yellowstone-grpc-proto = { version = "4.1.1" }
yellowstone-grpc-client = { version = "5.0.0" }
yellowstone-grpc-proto = { version = "5.0.0" }
rustls = { version = "0.23.20", features = ["ring"] }
dotenvy = "0.15.7"
pretty_env_logger = "0.5.0"
@@ -42,4 +45,6 @@ log = "0.4.22"
chrono = "0.4.39"
regex = "1"
tracing = "0.1.41"
thiserror = "2.0.11"
async-trait = "0.1.86"