Skip to content

Commit

Permalink
Bump the cargo version to 0.50
Browse files Browse the repository at this point in the history
And pin the serde version to avoid incompatibilities with cargo.
  • Loading branch information
lu-zero committed Jan 29, 2021
1 parent 93f4b9f commit cdce11c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-c"
version = "0.7.1+cargo-0.49"
version = "0.7.1+cargo-0.50"
authors = ["Luca Barbato <lu_zero@gentoo.org>"]
description = "Helper program to build and install c-like libraries"
license = "MIT"
Expand All @@ -27,14 +27,14 @@ name = "cargo-ctest"
path = "src/bin/ctest.rs"

[dependencies]
cargo = "0.49"
cargo = "0.50"
semver = "0.10"
log = "0.4"
structopt = "0.3"
regex = "1"
cbindgen = "0.16"
toml = "0.5"
serde = "1.0"
serde = "=1.0.121"
serde_derive = "1.0"
anyhow = "1.0"
cc = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ pub fn cbuild(
ws.profiles(),
config,
compile_opts.build_config.requested_profile,
ws.features(),
ws.unstable_features(),
)?;

// TODO: there must be a simpler way to get the right path.
Expand Down

0 comments on commit cdce11c

Please sign in to comment.