|
@@ -96,7 +96,7 @@ pub fn command(mut options: Options) -> Result<()> {
|
|
|
resolve_tauri_path(&tauri_path, "core/tauri")
|
|
|
),
|
|
|
format!(
|
|
|
- "{{ path = {:?} }}",
|
|
|
+ "{{ path = {:?}, default-features = false }}",
|
|
|
resolve_tauri_path(&tauri_path, "core/tauri-build")
|
|
|
),
|
|
|
format!(
|
|
@@ -108,7 +108,10 @@ pub fn command(mut options: Options) -> Result<()> {
|
|
|
(
|
|
|
format!(r#"{{ version = "{}" }}"#, metadata.tauri),
|
|
|
format!(r#"{{ version = "{}" }}"#, metadata.tauri),
|
|
|
- format!(r#"{{ version = "{}" }}"#, metadata.tauri_build),
|
|
|
+ format!(
|
|
|
+ r#"{{ version = "{}", default-features = false }}"#,
|
|
|
+ metadata.tauri_build
|
|
|
+ ),
|
|
|
format!(
|
|
|
r#"{{ version = "{}", features = ["build"] }}"#,
|
|
|
metadata.tauri_plugin
|