Skip to content

Commit 8b6e8cf

Browse files
committed
Fix stray native-tls dep still getting included, hopefully
1 parent f6bf8ba commit 8b6e8cf

File tree

5 files changed

+34
-39
lines changed

5 files changed

+34
-39
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
target: ${{ matrix.target }}
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
checksum: sha256
41+
locked: true
4142
dry-run: ${{ inputs.dry-run }}
4243
- name: Save Artifacts
4344
if: ${{ inputs.dry-run }}

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ anyhow = "1.0"
1212
async-scoped = { version = "0.9", features = ["use-tokio"] }
1313
dirs = "6"
1414
itertools = "0.14"
15-
reqwest = { version = "0.12", default-features = false }
15+
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
1616
serde = "1.0"
1717
serde_json = "1.0"
1818
tokio = { version = "1.45", default-features = false }

cli/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ keywords = [
1717
"modrinth",
1818
]
1919

20-
[features]
21-
default = []
22-
2320
[dependencies]
2421
clap = { version = "4.5", features = ["derive"] }
2522
clap_complete = "4.5"
@@ -34,7 +31,7 @@ anyhow.workspace = true
3431
async-scoped.workspace = true
3532
dirs.workspace = true
3633
itertools.workspace = true
37-
reqwest = { workspace = true, features = ["rustls-tls"] }
34+
reqwest.workspace = true
3835
serde = { workspace = true, features = ["derive"] }
3936
serde_json.workspace = true
4037
tokio = { workspace = true, features = ["rt-multi-thread"] }

lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ anyhow.workspace = true
2828
async-scoped.workspace = true
2929
dirs.workspace = true
3030
itertools.workspace = true
31-
reqwest = { workspace = true, features = ["rustls-tls"] }
31+
reqwest.workspace = true
3232
serde = { workspace = true, features = ["derive"] }
3333
serde_json.workspace = true
3434
tokio = { workspace = true, features = ["fs", "io-util", "sync", "process"] }
3535
url = { workspace = true, features = ["serde"] }
3636

3737
# Supported Clients
3838
# TODO: Make each a feature?
39-
curseforge = { package = "curseforge-client", path = "../curseforge-client", version = "1.0", features = [
39+
curseforge = { package = "curseforge-client", path = "../curseforge-client", version = "1.0", default-features = false, features = [
4040
"bon",
4141
"rustls",
4242
] }
43-
modrinth = { package = "modrinth-client", path = "../modrinth-client", version = "2.7", features = [
43+
modrinth = { package = "modrinth-client", path = "../modrinth-client", version = "2.7", default-features = false, features = [
4444
"bon",
4545
"rustls",
4646
] }

0 commit comments

Comments
 (0)