Skip to content

Commit

Permalink
upgrade futures and tokio crates (#17902)
Browse files Browse the repository at this point in the history
Upgrade various crates:
- `futures` and related crates to v0.3.25.
- `tokio`  to v1.23.0
- `tokio-stream` to v0.1.11
  • Loading branch information
tdyas authored Jan 3, 2023
1 parent df1c5b2 commit 4878d5f
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 25 deletions.
105 changes: 81 additions & 24 deletions src/rust/engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/rust/engine/fs/store/src/snapshot_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async fn render_merge_error<T: SnapshotOps + 'static>(
///
#[async_trait]
pub trait SnapshotOps: Clone + Send + Sync + 'static {
type Error: Debug + Display + From<String>;
type Error: Send + Debug + Display + From<String>;

async fn load_file_bytes_with<
T: Send + 'static,
Expand Down

0 comments on commit 4878d5f

Please sign in to comment.