From 2b8c2fec84ec40114a9b8b74b957bd7a3bfda085 Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Thu, 13 Jun 2024 12:27:44 -0700 Subject: [PATCH 1/4] Bump near deps to use node version 1.39.1 --- lake-primitives/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lake-primitives/Cargo.toml b/lake-primitives/Cargo.toml index 37a723e..94cf724 100644 --- a/lake-primitives/Cargo.toml +++ b/lake-primitives/Cargo.toml @@ -9,10 +9,10 @@ repository.workspace = true [dependencies] anyhow = "1.0.51" -near-crypto = "0.21.2" -near-primitives-core = "0.21.2" -near-primitives = "0.21.2" -near-indexer-primitives = "0.21.2" +near-crypto = "0.22" +near-primitives-core = "0.22" +near-primitives = "0.22" +near-indexer-primitives = "0.22" paste = "1.0.12" serde = { version = "1", features = ["derive"] } serde_json = "1.0.75" From a346b816db22d5b2f4517f5f21e9c4c1e179cc05 Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Mon, 17 Jun 2024 17:45:40 -0700 Subject: [PATCH 2/4] Bump near deps to node 1.40-rc.1 --- lake-framework/Cargo.toml | 2 +- lake-primitives/Cargo.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lake-framework/Cargo.toml b/lake-framework/Cargo.toml index 694fd5c..112d007 100644 --- a/lake-framework/Cargo.toml +++ b/lake-framework/Cargo.toml @@ -10,7 +10,7 @@ repository.workspace = true aws-config = { version = "1.4.0", features = ["behavior-version-latest"] } aws-types = "1.2.0" aws-credential-types = "1.2.0" -aws-sdk-s3 = "1.24.0" +aws-sdk-s3 = "1.29.0" async-stream = "0.3.3" async-trait = "0.1.64" derive_builder = "0.11.2" diff --git a/lake-primitives/Cargo.toml b/lake-primitives/Cargo.toml index 94cf724..d8c1385 100644 --- a/lake-primitives/Cargo.toml +++ b/lake-primitives/Cargo.toml @@ -9,10 +9,10 @@ repository.workspace = true [dependencies] anyhow = "1.0.51" -near-crypto = "0.22" -near-primitives-core = "0.22" -near-primitives = "0.22" -near-indexer-primitives = "0.22" +near-crypto = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } +near-primitives-core = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } +near-primitives = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } +near-indexer-primitives = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } paste = "1.0.12" serde = { version = "1", features = ["derive"] } serde_json = "1.0.75" From cf6873f4a8d0c9ec3f45460de09bae6855c4bd31 Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Wed, 3 Jul 2024 15:58:26 -0700 Subject: [PATCH 3/4] Bump near deps to node 1.40 --- lake-primitives/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lake-primitives/Cargo.toml b/lake-primitives/Cargo.toml index d8c1385..4ededcc 100644 --- a/lake-primitives/Cargo.toml +++ b/lake-primitives/Cargo.toml @@ -9,10 +9,10 @@ repository.workspace = true [dependencies] anyhow = "1.0.51" -near-crypto = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } -near-primitives-core = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } -near-primitives = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } -near-indexer-primitives = { git = "https://github.com/near/nearcore", rev = "08941a3c070eca2e6163a4ad1eaed1f0d3ee233c" } +near-crypto = "0.23" +near-primitives-core = "0.23" +near-primitives = "0.23" +near-indexer-primitives = "0.23" paste = "1.0.12" serde = { version = "1", features = ["derive"] } serde_json = "1.0.75" From 49307cffc5b1d444f94d25b144f25bd2db28ce7d Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Mon, 8 Jul 2024 21:40:01 -0700 Subject: [PATCH 4/4] Use non patch version of deps --- lake-framework/Cargo.toml | 16 ++++++++-------- lake-primitives/Cargo.toml | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lake-framework/Cargo.toml b/lake-framework/Cargo.toml index 112d007..d5a8b5c 100644 --- a/lake-framework/Cargo.toml +++ b/lake-framework/Cargo.toml @@ -7,20 +7,20 @@ license.workspace = true repository.workspace = true [dependencies] -aws-config = { version = "1.4.0", features = ["behavior-version-latest"] } -aws-types = "1.2.0" -aws-credential-types = "1.2.0" -aws-sdk-s3 = "1.29.0" +aws-config = { version = "1.4", features = ["behavior-version-latest"] } +aws-types = "1.2" +aws-credential-types = "1.2" +aws-sdk-s3 = "1.29" async-stream = "0.3.3" async-trait = "0.1.64" derive_builder = "0.11.2" futures = "0.3.23" serde = { version = "1", features = ["derive"] } -serde_json = "1.0.75" -thiserror = "1.0.38" +serde_json = "1.0" +thiserror = "1.0" tokio = { version = "1.1", features = ["sync", "time", "rt-multi-thread"] } tokio-stream = { version = "0.1" } -tracing = "0.1.13" +tracing = "0.1" near-lake-primitives = { path = "../lake-primitives", version = "0.8.0-beta.2" } near-lake-context-derive = { path = "../lake-context-derive", version = "0.8.0-beta.2" } @@ -29,7 +29,7 @@ near-lake-context-derive = { path = "../lake-context-derive", version = "0.8.0-b aws-smithy-http = "0.60.0" aws-smithy-types = "1.0.0" # use by examples -anyhow = "1.0.51" +anyhow = "1.0" # used by nft_indexer example regex = "1.5.4" diff --git a/lake-primitives/Cargo.toml b/lake-primitives/Cargo.toml index 4ededcc..bc70c51 100644 --- a/lake-primitives/Cargo.toml +++ b/lake-primitives/Cargo.toml @@ -8,12 +8,12 @@ repository.workspace = true [dependencies] -anyhow = "1.0.51" +anyhow = "1.0" near-crypto = "0.23" near-primitives-core = "0.23" near-primitives = "0.23" near-indexer-primitives = "0.23" paste = "1.0.12" serde = { version = "1", features = ["derive"] } -serde_json = "1.0.75" -thiserror = "1.0.38" +serde_json = "1.0" +thiserror = "1.0"