Skip to content

Commit

Permalink
Merge pull request #356 from dutyrok/main
Browse files Browse the repository at this point in the history
fix build failure on powerpc64
  • Loading branch information
GyulyVGC authored Aug 27, 2023
2 parents 19957dc + 8369906 commit e2d5bd5
Show file tree
Hide file tree
Showing 2 changed files with 183 additions and 3 deletions.
179 changes: 177 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ maxminddb = "0.23.0"
confy = "0.5.1"
serde = { version = "1.0.186", default_features = false, features = ["derive"] }
rodio = { version = "0.17.1", default_features = false, features = ["mp3"] }
reqwest = { version = "0.11.20", default-features = false, features = ["json", "blocking", "rustls-tls"] }
dns-lookup = "2.0.2"

[target.'cfg(target_arch = "powerpc64")'.dependencies]
reqwest = { version = "0.11.20", features = ["json", "blocking"] }

[target.'cfg(not(target_arch = "powerpc64"))'.dependencies]
reqwest = { version = "0.11.20", default-features = false, features = ["json", "blocking", "rustls-tls"] }

#───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

[dev-dependencies]
Expand Down

0 comments on commit e2d5bd5

Please sign in to comment.