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

Updated some dependencies #103

Merged
merged 6 commits into from
Jun 12, 2024
Merged
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
8 changes: 4 additions & 4 deletions lake-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ license.workspace = true
repository.workspace = true

[dependencies]
aws-config = { version = "1.0.0", features = ["behavior-version-latest"] }
aws-types = "1.0.0"
aws-credential-types = "1.0.0"
aws-sdk-s3 = "0.39.0"
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"
async-stream = "0.3.3"
async-trait = "0.1.64"
derive_builder = "0.11.2"
Expand Down
8 changes: 4 additions & 4 deletions lake-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repository.workspace = true

[dependencies]
anyhow = "1.0.51"
near-crypto = "0.17.0"
near-primitives-core = "0.17.0"
near-primitives = "0.17.0"
near-indexer-primitives = "0.17.0"
near-crypto = "0.21.2"
near-primitives-core = "0.21.2"
near-primitives = "0.21.2"
near-indexer-primitives = "0.21.2"
paste = "1.0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.75"
Expand Down
4 changes: 2 additions & 2 deletions lake-primitives/src/types/delegate_actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ impl DelegateDeleteAccount {
impl DelegateAction {
// Tries to convert a `near_primitives::delegate_action::DelegateAction` into a [Vec<DelegateAction>].
pub fn try_from_delegate_action(
delegate_action: &near_primitives::delegate_action::DelegateAction,
delegate_action: &near_primitives::action::delegate::DelegateAction,
) -> Result<Vec<Self>, &'static str> {
let mut actions = Vec::with_capacity(delegate_action.actions.len());

for nearcore_action in delegate_action.clone().actions {
let action = match views::ActionView::from(
<near_primitives::delegate_action::NonDelegateAction as Into<
<near_primitives::action::delegate::NonDelegateAction as Into<
near_primitives::transaction::Action,
>>::into(nearcore_action),
) {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.69.0
1.78.0
Loading