Skip to content

Commit abfafd2

Browse files
chore: Upgrade all deps to their latest version (#170)
1 parent 60688cf commit abfafd2

File tree

3 files changed

+13
-29
lines changed

3 files changed

+13
-29
lines changed

Cargo.lock

Lines changed: 2 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,26 @@ log = "0.4"
2323
serde_json = "1"
2424
serde = "1"
2525
regex = "1"
26-
futures = "0.3.5"
27-
http = "1.0"
26+
futures = "0.3.31"
27+
http = "1.3"
2828
http-body-util = "0.1"
29-
hyper = { version = "1.0", features = ["full"] }
29+
hyper = { version = "1.7", features = ["full"] }
3030
hyper-util = { version = "0.1", features = [
3131
"tokio",
3232
"server",
3333
"http1",
3434
"http2",
3535
] }
36-
tokio = { version = "1.5.0", features = ["rt", "macros", "net"] }
37-
deadpool = "0.10.0"
38-
async-trait = "0.1"
36+
tokio = { version = "1.47.1", features = ["rt", "macros", "net"] }
37+
deadpool = "0.12.2"
3938
once_cell = "1"
40-
assert-json-diff = "2.0.1"
39+
assert-json-diff = "2.0.2"
4140
base64 = "0.22"
42-
url = "2.2"
41+
url = "2.5"
4342

4443
[dev-dependencies]
45-
async-std = { version = "1.13.0", features = ["attributes", "tokio1"] }
46-
reqwest = { version = "0.12.7", features = ["json"] }
47-
tokio = { version = "1.5.0", features = ["macros", "rt-multi-thread"] }
48-
actix-rt = "2.2.0"
44+
async-std = { version = "1.13.2", features = ["attributes", "tokio1"] }
45+
reqwest = { version = "0.12.23", features = ["json"] }
46+
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
47+
actix-rt = "2.10.0"
4948
serde = { version = "1", features = ["derive"] }

src/mock_server/pool.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use crate::MockServer;
22
use crate::mock_server::bare_server::BareMockServer;
3-
use async_trait::async_trait;
43
use deadpool::managed::{Metrics, Object, Pool};
54
use once_cell::sync::Lazy;
65
use std::convert::Infallible;
@@ -52,7 +51,6 @@ pub(crate) async fn get_pooled_mock_server() -> PooledMockServer {
5251
#[derive(Debug)]
5352
pub(crate) struct MockServerPoolManager;
5453

55-
#[async_trait]
5654
impl deadpool::managed::Manager for MockServerPoolManager {
5755
type Error = Infallible;
5856
type Type = BareMockServer;

0 commit comments

Comments
 (0)