Skip to content

Commit

Permalink
remove minor version specifiers in Cargo.toml
Browse files Browse the repository at this point in the history
this does not touch the libc req, but does move the libc req to a cfg gate
  • Loading branch information
Emilgardis committed Mar 17, 2022
1 parent 30407ce commit d29a25b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,23 @@ edition = "2018"

[dependencies]
atty = "0.2"
color-eyre = "0.6.1"
eyre = "0.6.7"
color-eyre = "0.6"
eyre = "0.6"
home = "0.5"
lazy_static = "1.0"
libc = "0.2.104"
lazy_static = "1"
rustc_version = "0.4"
toml = "0.5"
which = { version = "4", default_features = false }
shell-escape = "0.1.4"
serde_json = "1.0.48"
shell-escape = "0.1"
serde_json = "1"

[target.'cfg(not(windows))'.dependencies]
nix = "0.23"
libc = "0.2.104"


[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["winbase"] }
winapi = { version = "0.3", features = ["winbase"] }

[profile.release]
lto = true

0 comments on commit d29a25b

Please sign in to comment.