Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
austbot committed Dec 12, 2022
1 parent 80d6ae1 commit 5f155d8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Solana.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ COPY Cargo.lock /rust/
WORKDIR /rust
RUN cargo build --release

FROM solanalabs/solana:v1.10.41
FROM solanalabs/solana:v1.14.10
COPY --from=builder /rust/target/release/libplerkle.so /plugin/plugin.so
COPY ./docker .
RUN chmod +x ./*.sh
Expand Down
18 changes: 8 additions & 10 deletions plerkle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plerkle"
description = "Geyser plugin with dynamic config reloading, message bus agnostic abstractions and a whole lot of fun."
version = "1.1.0"
version = "1.1.1"
authors = ["Metaplex Developers <dev@metaplex.com>"]
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin"
license = "AGPL-3.0"
Expand All @@ -14,12 +14,10 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
log = "0.4.11"
async-trait = "0.1.53"

solana-sdk = { version = "1.10.41" }
solana-transaction-status = { version = "1.10.41" }
solana-geyser-plugin-interface = { version = "1.10.41" }
solana-logger = { version = "1.10.41" }

solana-sdk = { version =">=1.10.41" }
solana-transaction-status = { version = ">=1.10.41" }
solana-geyser-plugin-interface = { version = ">=1.10.41" }
solana-logger = { version = ">=1.10.41" }
thiserror = "1.0.30"
base64 = "0.13.0"
lazy_static = "1.4.0"
Expand All @@ -33,10 +31,10 @@ cadence-macros = "0.29.0"
chrono = "0.4.19"
tracing = "0.1.35"
hex = "0.4.3"
plerkle_messenger = { path = "../plerkle_messenger", version = "1.1.0", features = ["redis"] }
plerkle_messenger = { path = "../plerkle_messenger", version = "1.1.1", features = ["redis"] }
flatbuffers = "22.10.26"
plerkle_serialization = { path = "../plerkle_serialization", version = "1.1.0" }
tokio = { version = "1.17.0", features = ["full"] }
plerkle_serialization = { path = "../plerkle_serialization", version = "1.1.1" }
tokio = { version = "1.23.0", features = ["full"] }
figment = { version = "0.10.6", features = ["env", "test"] }


Expand Down
4 changes: 2 additions & 2 deletions plerkle_messenger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "plerkle_messenger"
description = "Metaplex Messenger trait for Geyser plugin producer/consumer patterns."
version = "1.1.0"
version = "1.1.1"
authors = ["Metaplex Developers <dev@metaplex.com>"]
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin"
license = "AGPL-3.0"
edition = "2021"
readme = "Readme.md"

[dependencies]
redis = { version = "0.22.0", features = ["aio", "tokio-comp", "streams"], optional = true}
redis = { version = "0.22.1", features = ["aio", "tokio-comp", "streams"], optional = true}
log = "0.4.11"
thiserror = "1.0.30"
async-trait = "0.1.53"
Expand Down
6 changes: 3 additions & 3 deletions plerkle_serialization/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plerkle_serialization"
description = "Metaplex Flatbuffers Plerkle Serialization for Geyser plugin producer/consumer patterns."
version = "1.1.0"
version = "1.1.1"
authors = ["Metaplex Developers <dev@metaplex.com>"]
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin"
license = "AGPL-3.0"
Expand All @@ -10,8 +10,8 @@ readme = "Readme.md"

[dependencies]
flatbuffers = "22.10.26"
solana-geyser-plugin-interface = { version = ">=1.10" }
solana-runtime = ">=1.10"
solana-geyser-plugin-interface = { version = ">=1.10.41" }
solana-runtime = ">=1.10.41"
chrono = "0.4.22"
serde = { version = "1.0.149"}
[package.metadata.docs.rs]
Expand Down

0 comments on commit 5f155d8

Please sign in to comment.