Skip to content

Commit f3cc43a

Browse files
committed
Rust tls normalization
1 parent be5ae9a commit f3cc43a

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

mlm_mam/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ mlm_parse = { path = "../mlm_parse" }
1313
native_db = { git = "https://github.com/StirlingMouse/native_db.git", branch = "0.8.x" }
1414
native_model = "0.4.20"
1515
once_cell = "1.21.3"
16-
openssl = { version = "0.10.73", features = ["vendored"] }
17-
reqwest = { version = "0.12.20", features = ["json"] }
16+
reqwest = { version = "0.12.20", default-features = false, features = [
17+
"json",
18+
"rustls-tls",
19+
] }
1820
reqwest_cookie_store = "0.8.0"
1921
serde = "1.0.136"
2022
serde_derive = "1.0.136"

mlm_meta/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ edition = "2024"
66
[dependencies]
77
anyhow = "1.0"
88
async-trait = "0.1"
9-
openssl = { version = "0.10.73", features = ["vendored"] }
109
serde = { version = "1.0", features = ["derive"] }
11-
reqwest = { version = "0.11", features = ["json", "gzip", "rustls-tls"] }
12-
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
10+
reqwest = { version = "0.12.20", default-features = false, features = ["json", "rustls-tls", "gzip"] }
11+
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] }
1312
serde_json = "1.0"
1413
scraper = "0.14"
1514
mlm_db = { path = "../mlm_db" }

0 commit comments

Comments
 (0)