mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 03:40:59 +01:00
fix: use specifier target by default in init
This commit is contained in:
parent
2b2d280fe0
commit
15af291f84
1 changed files with 2 additions and 1 deletions
|
@ -179,7 +179,8 @@ impl InitCommand {
|
||||||
let field = &mut dev_deps[alias];
|
let field = &mut dev_deps[alias];
|
||||||
field["name"] = toml_edit::value(spec.name.to_string());
|
field["name"] = toml_edit::value(spec.name.to_string());
|
||||||
field["version"] = toml_edit::value(spec.version.to_string());
|
field["version"] = toml_edit::value(spec.version.to_string());
|
||||||
field["target"] = toml_edit::value(v_id.target().to_string());
|
field["target"] =
|
||||||
|
toml_edit::value(spec.target.unwrap_or_else(|| *v_id.target()).to_string());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
println!(
|
println!(
|
||||||
|
|
Loading…
Add table
Reference in a new issue