Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
ci: fix target
Browse files Browse the repository at this point in the history
  • Loading branch information
DumpTime committed Feb 26, 2024
1 parent d645031 commit e6200f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ serde_json.workspace = true
serde_yaml.workspace = true
tokio.workspace = true

[target.'cfg(not(target = "x86_64-unknown-linux-musl"))'.dependencies.reqwest]
[target.'cfg(not(target_env = "musl"))'.dependencies.reqwest]
workspace = true
default-features = true

[target.x86_64-unknown-linux-musl.dependencies.reqwest]
[target.'cfg(target_env = "musl")'.dependencies.reqwest]
workspace = true
features = ["rustls-tls"]
4 changes: 2 additions & 2 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ tokio.workspace = true
once_cell = "1.16"
serde_yaml.workspace = true

[target.'cfg(not(target = "x86_64-unknown-linux-musl"))'.dependencies.reqwest]
[target.'cfg(not(target_env = "musl"))'.dependencies.reqwest]
workspace = true
features = ["cookies"]
default-features = true

[target.x86_64-unknown-linux-musl.dependencies.reqwest]
[target.'cfg(target_env = "musl")'.dependencies.reqwest]
workspace = true
features = ["cookies", "rustls-tls"]

Expand Down

0 comments on commit e6200f7

Please sign in to comment.