diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 4162618..50436bd 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -127,7 +127,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chainlink-data-streams-report" -version = "0.1.0" +version = "0.0.1" dependencies = [ "hex", "num-bigint", @@ -139,11 +139,11 @@ dependencies = [ [[package]] name = "chainlink-data-streams-sdk" -version = "0.1.0" +version = "0.0.1" dependencies = [ "byteorder", + "chainlink-data-streams-report", "criterion", - "data-streams-report", "dotenv", "futures", "futures-util", @@ -324,19 +324,6 @@ version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" -[[package]] -name = "data-streams-report" -version = "0.0.1" -source = "git+https://github.com/smartcontractkit/data-streams-sdk.git#4d7f381d0aab89f6611303e8a0d961afb5210b78" -dependencies = [ - "hex", - "num-bigint", - "serde", - "serde_json", - "snap", - "thiserror", -] - [[package]] name = "deranged" version = "0.3.11" diff --git a/rust/crates/report/Cargo.toml b/rust/crates/report/Cargo.toml index 218fe7b..9215fa2 100644 --- a/rust/crates/report/Cargo.toml +++ b/rust/crates/report/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" description = "Chainlink Data Streams Report" license = "MIT" repository = "https://github.com/smartcontractkit/data-streams-sdk" -readme = "README.md" +readme = "../../README.md" exclude = ["/target/*", "examples/*"] keywords = ["chainlink"] diff --git a/rust/crates/sdk/Cargo.toml b/rust/crates/sdk/Cargo.toml index 3c6a1ec..4119d26 100644 --- a/rust/crates/sdk/Cargo.toml +++ b/rust/crates/sdk/Cargo.toml @@ -6,12 +6,12 @@ rust-version = "1.70" description = "Chainlink Data Streams client SDK" license = "MIT" repository = "https://github.com/smartcontractkit/data-streams-sdk" -readme = "README.md" +readme = "../../README.md" exclude = ["/target/*", "examples/*", "tests/*", "docs/*", "book/*"] keywords = ["chainlink"] [dependencies] -chainlink-data-streams-report = "0.0.1" +chainlink-data-streams-report = { path = "../report", version = "0.0.1" } reqwest = { version = "0.11.20", features = ["json", "rustls-tls"] } tokio = { version = "1.29.1", features = ["full"] } tokio-tungstenite = { version = "0.20.1", features = [