diff --git a/CHANGELOG.md b/CHANGELOG.md index f78bdf4..582b5db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ All notable changes to this project will be documented in this file. - Release 0.3.4 - Update sdk version - Release 0.3.5 +- Update tests +- Release 0.3.6 ### Refactor @@ -32,6 +34,7 @@ All notable changes to this project will be documented in this file. - Remove 'v' prefix from release tag - New ratio formatting - Update logging level +- Update to new sdk versions ## [0.3.1] - 2023-05-22 diff --git a/Cargo.lock b/Cargo.lock index 24a0cb9..881232f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2287,8 +2287,9 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.3.3" -source = "git+https://github.com/graphops/graphcast-sdk#89fb08f88e548980dfa27f2155ac878b54a049e5" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f280b49f7aa775a9b193ff35ae9d3063f4db2156b9c1160f8610d3a385ffb593" dependencies = [ "anyhow", "async-graphql", @@ -3822,7 +3823,7 @@ dependencies = [ [[package]] name = "poi-radio" -version = "0.3.5" +version = "0.3.6" dependencies = [ "anyhow", "async-graphql", @@ -4505,9 +4506,9 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.7.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b569c32c806ec3abdf3b5869fb8bf1e0d275a7c1c9b0b05603d9464632649edf" +checksum = "ad560913365790f17cbf12479491169f01b9d46d29cfc7422bf8c64bdc61b731" dependencies = [ "cfg-if", "derive_more", @@ -4517,9 +4518,9 @@ dependencies = [ [[package]] name = "scale-info-derive" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53012eae69e5aa5c14671942a5dd47de59d4cdcff8532a6dd0e081faf1119482" +checksum = "19df9bd9ace6cc2fe19387c96ce677e823e07d017ceed253e7bb3d1d1bd9c73b" dependencies = [ "proc-macro-crate", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index d94a28e..29e4095 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [workspace] members = ["poi-radio", "test-sender", "test-utils", "test-runner"] +resolver = "2" [profile.dev] debug = true diff --git a/poi-radio/Cargo.toml b/poi-radio/Cargo.toml index d8a3ba5..a761b68 100644 --- a/poi-radio/Cargo.toml +++ b/poi-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poi-radio" -version = "0.3.5" +version = "0.3.6" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "POI Radio monitors subgraph data integrity in real time using Graphcast SDK" @@ -10,7 +10,7 @@ keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"] categories = ["network-programming", "web-programming::http-client"] [dependencies] -graphcast_sdk = { package = "graphcast-sdk", git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.4" prost = "0.11" once_cell = "1.17" chrono = "0.4" diff --git a/test-runner/Cargo.toml b/test-runner/Cargo.toml index a47cb2f..9ed55d4 100644 --- a/test-runner/Cargo.toml +++ b/test-runner/Cargo.toml @@ -23,7 +23,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } test-utils = { path = "../test-utils" } -graphcast_sdk = { package = "graphcast-sdk", git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.4" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1" diff --git a/test-sender/Cargo.toml b/test-sender/Cargo.toml index 651372f..496c0a0 100644 --- a/test-sender/Cargo.toml +++ b/test-sender/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } -graphcast_sdk = { package = "graphcast-sdk", git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.4" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1" diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index b5f2083..ac82b3f 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } -graphcast_sdk = { package = "graphcast-sdk", git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.3.4" poi-radio = { path = "../poi-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1"