Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade to NEAR node version 1.40 #106

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions lake-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.24.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" }
Expand All @@ -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"
Expand Down
14 changes: 7 additions & 7 deletions lake-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ 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"
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"
Loading