Skip to content

Commit

Permalink
Dependency updates (#11)
Browse files Browse the repository at this point in the history
* Rename crates in example subdir to avoid cargo picking them in place of the real ones

* Bump dependency pin to resolve skew with sibling package

* Bump pin version in transitive dependency

* Fix skew between diesel and bigdecimal dependencies

* Remove rust version pinning

* Blind attempt to fix version skew error

---------

Co-authored-by: David Boreham <[email protected]>
  • Loading branch information
dboreham and David Boreham authored Apr 29, 2024
1 parent 087aa7c commit 668b495
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ backoff = { version = "0.4.0", features = ["tokio"] }
backtrace = "0.3.58"
bcs = { git = "https://github.com/aptos-labs/bcs.git", rev = "d31fab9d81748e2594be5cd5cdf845786a30562d" }
better_any = "0.1.1"
bigdecimal = { version = "0.3.0", features = ["serde"] }
bigdecimal = { version = "0.4.3", features = ["serde"] }
bitvec = "0.19.4"
blake2 = "0.10.4"
blake2-rfc = "0.2.18"
Expand Down Expand Up @@ -513,9 +513,9 @@ paste = "1.0.7"
pbjson = "0.4.0"
percent-encoding = "2.1.0"
pin-project = "1.0.10"
poem = { version = "=1.3.55", features = ["anyhow", "rustls"] }
poem-openapi = { version = "=2.0.11", features = ["swagger-ui", "url"] }
poem-openapi-derive = "=2.0.11"
poem = { version = "=1.3.56", features = ["anyhow", "rustls"] }
poem-openapi = { version = "=2.0.27", features = ["swagger-ui", "url"] }
poem-openapi-derive = "=2.0.27"
pretty_assertions = "1.2.1"
procfs = "0.14.1"
proc-macro2 = "1.0.38"
Expand Down
4 changes: 2 additions & 2 deletions crates/diem/src/test/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ use std::{
time::Duration,
};
use tempfile::TempDir;
use thiserror::__private::PathAsDisplay;
use thiserror::__private::AsDisplay;
#[cfg(feature = "cli-framework-test-move")]
use thiserror::__private::PathAsDisplay;
use thiserror::__private::AsDisplay;
use tokio::time::{sleep, Instant};

#[cfg(test)]
Expand Down
1 change: 0 additions & 1 deletion rust-toolchain

This file was deleted.

0 comments on commit 668b495

Please sign in to comment.