Skip to content

Commit 3b16375

Browse files
committedFeb 25, 2025·
update dependencies
1 parent 437d941 commit 3b16375

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed
 

‎Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -12,37 +12,37 @@ repository = "https://github.com/alexliesenfeld/httpmock"
1212
rust-version = "1.74.1"
1313

1414
[dependencies]
15-
serde = { version = "1.0", features = ["derive"] }
16-
serde_json = "1.0"
17-
serde_regex = "1.1"
15+
serde = { version = "1", features = ["derive"] }
16+
serde_json = "1"
17+
serde_regex = "1"
1818
base64 = "0.22"
19-
regex = "1.10"
19+
regex = "1"
2020
log = "0.4"
21-
url = "2.5"
21+
url = "2"
2222
stringmetrics = "2"
23-
assert-json-diff = "2.0"
23+
assert-json-diff = "2"
2424
async-trait = "0.1"
2525
async-object-pool = "0.1"
2626
crossbeam-utils = "0.8"
2727
futures-util = "0.3"
28-
similar = "2.6"
29-
form_urlencoded = "1.2"
30-
thiserror = "1.0"
28+
similar = "2"
29+
form_urlencoded = "1"
30+
thiserror = "1"
3131
path-tree = "0.8"
3232
http = "1"
3333
bytes = { version = "1", features = ["serde"] }
34-
hyper = { version = "1.4", features = ["server", "http1", "client"] }
34+
hyper = { version = "1", features = ["server", "http1", "client"] }
3535
hyper-util = { version = "0.1", features = ["tokio", "server", "http1", "server-auto"] }
3636
http-body-util = "0.1"
37-
tokio = { version = "1.36", features = ["sync", "macros", "rt-multi-thread", "signal"] }
38-
tabwriter = "1.4"
39-
colored = { version = "2.1", optional = true }
40-
clap = { version = "4.5", features = ["derive", "env"], optional = true }
37+
tokio = { version = "1.40", features = ["sync", "macros", "rt-multi-thread", "signal"] }
38+
tabwriter = "1"
39+
colored = { version = "2", optional = true }
40+
clap = { version = "4", features = ["derive", "env"], optional = true }
4141
env_logger = { version = "0.11", optional = true }
4242
serde_yaml = { version = "0.9", optional = true }
43-
async-std = { version = "1.12", features = ["attributes", "unstable"] }
43+
async-std = { version = "1", features = ["attributes", "unstable"] }
4444
headers = { version = "0.4", optional = true }
45-
once_cell = "1.20.3"
45+
once_cell = "1"
4646

4747
### TLS / HTTPS / PROXY
4848
rustls = { version = "0.23", default-features = false, features = ["std", "tls12"], optional = true }
@@ -55,11 +55,11 @@ futures-timer = "3"
5555

5656
[dev-dependencies]
5757
env_logger = "0.11"
58-
actix-rt = "2.9"
59-
colored = "2.1"
58+
actix-rt = "2"
59+
colored = "3"
6060
reqwest = { version = "0.12", features = ["blocking", "cookies", "rustls-tls", "rustls-tls-native-roots"] }
61-
syn = { version = "2.0", features = ["full"] }
62-
urlencoding = "2.1.2"
61+
syn = { version = "2", features = ["full"] }
62+
urlencoding = "2"
6363

6464
[features]
6565
default = ["cookies"]

0 commit comments

Comments
 (0)
Please sign in to comment.