making dependencies work with git

This commit is contained in:
Godmode Galactus 2023-10-17 15:40:46 +02:00
parent 0e151a75ec
commit db664b1109
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
2 changed files with 4 additions and 2 deletions

2
Cargo.lock generated
View File

@ -4459,6 +4459,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-client"
version = "1.9.0+solana.1.16.13"
source = "git+https://github.com/blockworks-foundation/yellowstone-grpc.git?branch=geyser_get_banking_transaction_results#e11327557497a364da38482f178598dcd339cddb"
dependencies = [
"bytes",
"futures",
@ -4472,6 +4473,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-proto"
version = "1.9.0+solana.1.16.13"
source = "git+https://github.com/blockworks-foundation/yellowstone-grpc.git?branch=geyser_get_banking_transaction_results#e11327557497a364da38482f178598dcd339cddb"
dependencies = [
"anyhow",
"prost",

View File

@ -33,5 +33,5 @@ tokio-postgres = { version = "0.7.10", features = ["with-chrono-0_4"] }
rustls = { version = "=0.20.8", default-features = false }
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "time"] }
yellowstone-grpc-client = { path = "../yellowstone-grpc/yellowstone-grpc-client" }
yellowstone-grpc-proto = { path = "../yellowstone-grpc/yellowstone-grpc-proto" }
yellowstone-grpc-client = {git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "geyser_get_banking_transaction_results"}
yellowstone-grpc-proto = {git = "https://github.com/blockworks-foundation/yellowstone-grpc.git", branch = "geyser_get_banking_transaction_results"}