mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
Take executable from configured bin
This commit is contained in:
parent
962ab2726a
commit
3f197507ba
1 changed files with 3 additions and 2 deletions
|
@ -141,8 +141,9 @@ impl CrateConfig {
|
|||
// We just assume they're using a 'main.rs'
|
||||
// Anyway, we've already parsed the manifest, so it should be easy to change the type
|
||||
let output_filename = manifest
|
||||
.lib
|
||||
.as_ref()
|
||||
.bin
|
||||
.first()
|
||||
.or(manifest.lib.as_ref())
|
||||
.and_then(|lib| lib.name.clone())
|
||||
.or_else(|| manifest.package.as_ref().map(|pkg| pkg.name.clone()))
|
||||
.expect("No lib found from cargo metadata");
|
||||
|
|
Loading…
Reference in a new issue