deps: lock geyser versions to avoid tonic/tokio issues

This commit is contained in:
Lou-Kamades 2023-12-17 14:38:58 -06:00
parent 7c844614b9
commit dbdc7e8911
No known key found for this signature in database
GPG Key ID: 87A166E4D7C01F30
3 changed files with 8 additions and 10 deletions

12
Cargo.lock generated
View File

@ -2639,7 +2639,7 @@ dependencies = [
[[package]]
name = "mango-feeds-connector"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"anyhow",
"async-channel",
@ -7300,9 +7300,8 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-client"
version = "1.9.0+solana.1.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "638fc820f10c6d836732d43f7c8f93a85301a7d90705a0db38b3bc11fc6657f6"
version = "1.10.0+solana.1.16.14"
source = "git+https://github.com/rpcpool/yellowstone-grpc.git?tag=v1.8.0+solana.1.16.14#a6cb542167f5eb9ec59e4a074c1671fa132e2f00"
dependencies = [
"bytes 1.5.0",
"futures 0.3.28",
@ -7315,9 +7314,8 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-proto"
version = "1.9.0+solana.1.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22b29533f1a9486a84b2ffc1fc53d19607af3b71e0554dbde38a841b72026be6"
version = "1.9.0+solana.1.16.14"
source = "git+https://github.com/rpcpool/yellowstone-grpc.git?tag=v1.8.0+solana.1.16.14#a6cb542167f5eb9ec59e4a074c1671fa132e2f00"
dependencies = [
"anyhow",
"prost",

View File

@ -14,8 +14,8 @@ solana-account-decoder = "~1.16.7"
solana-sdk = "~1.16.7"
solana-logger = "~1.16.7"
yellowstone-grpc-client = "1.9.0"
yellowstone-grpc-proto = "1.9.0"
yellowstone-grpc-client = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v1.8.0+solana.1.16.14" }
yellowstone-grpc-proto = { git = "https://github.com/rpcpool/yellowstone-grpc.git", tag = "v1.8.0+solana.1.16.14" }
jsonrpc-core = "18.0.0"
jsonrpc-core-client = { version = "18.0.0", features = ["ws", "http"] }

View File

@ -39,7 +39,7 @@ async-trait = { workspace = true }
warp = { workspace = true }
# 1.9.0+solana.1.16.1
# 1.8.0+solana.1.16.1
yellowstone-grpc-client = { workspace = true }
yellowstone-grpc-proto = { workspace = true }