Skip to content

Commit

Permalink
Update cargo-options to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Feb 2, 2023
1 parent 53fe8a4 commit c078027
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ base64 = "0.13.0"
glob = "0.3.0"
cargo-config2 = "0.1.4"
cargo_metadata = "0.15.3"
cargo-options = "0.5.2"
cargo-options = "0.6.0"
cbindgen = { version = "0.24.2", default-features = false }
flate2 = "1.0.18"
goblin = "0.6.0"
Expand Down Expand Up @@ -64,8 +64,8 @@ clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
clap_complete_command = "0.4.0"

# cross compile
cargo-zigbuild = { version = "0.14.3", optional = true }
cargo-xwin = { version = "0.13.5", default-features = false, optional = true }
cargo-zigbuild = { version = "0.15.0", optional = true }
cargo-xwin = { version = "0.14.0", default-features = false, optional = true }

# log
tracing = "0.1.36"
Expand Down
4 changes: 2 additions & 2 deletions src/build_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1228,8 +1228,6 @@ impl From<CargoOptions> for cargo_options::Rustc {
None => Vec::new(),
},
target_dir: cargo.target_dir,
manifest_path: cargo.manifest_path,
ignore_rust_version: cargo.ignore_rust_version,
verbose: cargo.verbose,
color: cargo.color,
frozen: cargo.frozen,
Expand All @@ -1240,6 +1238,8 @@ impl From<CargoOptions> for cargo_options::Rustc {
timings: cargo.timings,
..Default::default()
},
manifest_path: cargo.manifest_path,
ignore_rust_version: cargo.ignore_rust_version,
future_incompat_report: cargo.future_incompat_report,
args: cargo.args,
..Default::default()
Expand Down

0 comments on commit c078027

Please sign in to comment.