Skip to content

Commit

Permalink
Cleanup unused dependencies.
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <[email protected]>
  • Loading branch information
calavera committed Dec 9, 2023
1 parent 0638255 commit 6f1a457
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion lambda-runtime-api-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ hyper-util = { workspace = true, features = [
"http1",
"tokio",
] }
sync_wrapper = "0.1.2"
tower = { workspace = true, features = ["util"] }
tower-service = { workspace = true }
tokio = { version = "1.0", features = ["io-util"] }
2 changes: 1 addition & 1 deletion lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ hyper-util = { workspace = true, features = [
"server-auto",
"tokio",
] }
pin-project-lite = "*"
pin-project-lite = { workspace = true }
2 changes: 1 addition & 1 deletion lambda-runtime/src/simulated.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use http::Uri;
use hyper::rt::{Read, Write};
use hyper_util::client::legacy::connect::{Connected, Connection};
use pin_project_lite::pin_project;
use std::{
collections::HashMap,
future::Future,
Expand All @@ -16,7 +17,6 @@ use crate::Error;
pub struct Connector {
inner: Arc<Mutex<HashMap<Uri, DuplexStreamWrapper>>>,
}
use pin_project_lite::pin_project;

pin_project! {
pub struct DuplexStreamWrapper {
Expand Down

0 comments on commit 6f1a457

Please sign in to comment.