Skip to content

Commit

Permalink
Updated some dependencies (#103)
Browse files Browse the repository at this point in the history
* Updated some dependencies

* Update runner version for a new cargo

So we can build newer dependencies

* Updated AWS

* Updateding all to latest (because some were already there)

* Another swing at the CI

* Fix the rust toolchain the right way
  • Loading branch information
DavidM-D authored Jun 12, 2024
1 parent 23dd48d commit e0b2859
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
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

0 comments on commit e0b2859

Please sign in to comment.