diff --git a/block-streamer/Cargo.toml b/block-streamer/Cargo.toml index 4b54fa848..581b38cfb 100644 --- a/block-streamer/Cargo.toml +++ b/block-streamer/Cargo.toml @@ -13,11 +13,15 @@ borsh = "0.10.2" cached = "0.49.3" chrono = "0.4.25" futures = "0.3.5" +graphql_client = "0.14.0" lazy_static = "1.4.0" mockall = "0.11.4" +near-lake-framework = "0.7.8" prometheus = "0.13.3" prost = "0.12.3" redis = { version = "0.21.5", features = ["tokio-comp", "connection-manager"] } +registry-types = { path = "../registry/types" } +reqwest = { version = "^0.12.4", features = ["json", "blocking"] } serde = { version = "1", features = ["derive"] } serde_json = "1.0.55" tracing = "0.1.40" @@ -29,12 +33,6 @@ tokio-stream = "0.1.14" tonic = "0.10.2" wildmatch = "2.1.1" -registry-types = { path = "../registry/types" } - -near-lake-framework = "0.7.8" -graphql_client = "0.14.0" -reqwest = { version = "^0.12.4", features = ["json", "blocking"] } - [build-dependencies] tonic-build = "0.10" diff --git a/block-streamer/src/graphql_queries/mod.rs b/block-streamer/src/graphql_queries/mod.rs index 3c653c616..8ebe158f4 100644 --- a/block-streamer/src/graphql_queries/mod.rs +++ b/block-streamer/src/graphql_queries/mod.rs @@ -1,2 +1,2 @@ -pub mod get_bitmaps_wildcard; pub mod get_bitmaps_exact; +pub mod get_bitmaps_wildcard;