version: bump (#133)
This commit is contained in:
parent
604add3080
commit
e03a47c0cf
|
@ -4259,7 +4259,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "yellowstone-grpc-client"
|
||||
version = "1.1.1+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
dependencies = [
|
||||
"bytes",
|
||||
"futures",
|
||||
|
@ -4272,7 +4272,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "yellowstone-grpc-client-simple"
|
||||
version = "1.1.0+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"backoff",
|
||||
|
@ -4290,7 +4290,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "yellowstone-grpc-geyser"
|
||||
version = "0.6.1+solana.1.15.2"
|
||||
version = "0.7.0+solana.1.15.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64 0.21.0",
|
||||
|
@ -4320,7 +4320,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "yellowstone-grpc-proto"
|
||||
version = "1.1.0+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"prost",
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
[workspace]
|
||||
members = [
|
||||
"examples/rust", # 1.0.0+solana.1.15.2
|
||||
"yellowstone-grpc-client", # 1.0.1+solana.1.15.2
|
||||
"yellowstone-grpc-geyser", # 0.5.3+solana.1.15.2
|
||||
"yellowstone-grpc-proto", # 1.0.1+solana.1.15.2
|
||||
"examples/rust", # 1.2.0+solana.1.15.2
|
||||
"yellowstone-grpc-client", # 1.2.0+solana.1.15.2
|
||||
"yellowstone-grpc-geyser", # 0.7.0+solana.1.15.2
|
||||
"yellowstone-grpc-proto", # 1.2.0+solana.1.15.2
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yellowstone-grpc-client-simple"
|
||||
version = "1.1.0+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
authors = ["Triton One"]
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yellowstone-grpc-client"
|
||||
version = "1.1.1+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
authors = ["Triton One"]
|
||||
edition = "2021"
|
||||
description = "Yellowstone gRPC Geyser Simple Client"
|
||||
|
@ -15,7 +15,7 @@ futures = "0.3.24"
|
|||
http = "0.2.8"
|
||||
thiserror = "1.0"
|
||||
tonic = { version = "0.8.2", features = ["gzip", "tls", "tls-roots"] }
|
||||
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.1.0+solana.1.15.2" }
|
||||
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.2.0+solana.1.15.2" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.21.2", features = ["macros"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yellowstone-grpc-geyser"
|
||||
version = "0.6.1+solana.1.15.2"
|
||||
version = "0.7.0+solana.1.15.2"
|
||||
authors = ["Triton One"]
|
||||
edition = "2021"
|
||||
description = "Yellowstone gRPC Geyser Plugin"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "yellowstone-grpc-proto"
|
||||
version = "1.1.0+solana.1.15.2"
|
||||
version = "1.2.0+solana.1.15.2"
|
||||
authors = ["Triton One"]
|
||||
edition = "2021"
|
||||
description = "Yellowstone gRPC Geyser Protobuf Definitions"
|
||||
|
|
|
@ -12,7 +12,7 @@ service Geyser {
|
|||
rpc GetLatestBlockhash(GetLatestBlockhashRequest) returns (GetLatestBlockhashResponse) {}
|
||||
rpc GetBlockHeight(GetBlockHeightRequest) returns (GetBlockHeightResponse) {}
|
||||
rpc GetSlot(GetSlotRequest) returns (GetSlotResponse) {}
|
||||
rpc isBlockhashValid(IsBlockhashValidRequest) returns (IsBlockhashValidResponse) {}
|
||||
rpc IsBlockhashValid(IsBlockhashValidRequest) returns (IsBlockhashValidResponse) {}
|
||||
rpc GetVersion(GetVersionRequest) returns (GetVersionResponse) {}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue