-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
1,680 additions
and
1,319 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" | ||
license = "AGPL-3.0" | ||
|
@@ -32,9 +32,9 @@ chrono = "0.4.19" # did anyone say leftpad ? | |
solana-runtime = "1.11.3" | ||
tracing = "0.1.35" | ||
hex = "0.4.3" | ||
plerkle_messenger = { path="../plerkle_messenger", version = "0.0.7", features = ["redis"] } | ||
plerkle_messenger = { path="../plerkle_messenger", version = "0.0.8", features = ["redis"] } | ||
flatbuffers = "2.1.2" | ||
plerkle_serialization = { path="../plerkle_serialization", version = "0.0.7" } | ||
plerkle_serialization = { path="../plerkle_serialization", version = "0.0.8" } | ||
tokio = { version = "1.17.0", features = ["full"] } | ||
figment = { version = "0.10.6", features = ["env", "test"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
edition = "2021" | ||
edition = "2021" | ||
imports_granularity="Crate" | ||
reorder_imports = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "0.0.7" | ||
version = "0.0.8" | ||
authors = ["Metaplex Developers <[email protected]>"] | ||
repository = "https://github.com/metaplex-foundation/digital-asset-validator-plugin" | ||
license = "AGPL-3.0" | ||
edition = "2021" | ||
readme = "Readme.md" | ||
|
||
[dependencies] | ||
plerkle_serialization = { path = "../plerkle_serialization", version = "0.0.7" } | ||
plerkle_serialization = { path = "../plerkle_serialization", version = "0.0.8" } | ||
redis = { version = "0.21.5", features = ["aio", "tokio-comp", "streams"], optional = true } | ||
metaplex-pulsar = { version = "4.1.1", optional = true } | ||
log = "0.4.11" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
edition = "2021" | ||
edition = "2021" | ||
imports_granularity="Crate" | ||
reorder_imports = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.