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

Commit

Permalink
Fix minimum version of cc dependency
Browse files Browse the repository at this point in the history
build.rs uses cc::Tool::cflags_env(), which was introduced in cc 1.0.3.
  • Loading branch information
Xiretza committed Jun 13, 2022
1 parent 5bb1dfd commit 5bb6ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsodium-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ walkdir = "2"
libc = { version = "0.2" , default-features = false }

[target.'cfg(not(target_env = "msvc"))'.build-dependencies]
cc = "1.0"
cc = "1.0.3"

[dependencies]
libc = { version = "0.2" , default-features = false }
Expand Down

0 comments on commit 5bb6ecf

Please sign in to comment.