diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 9243eca8a..534c212f4 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -21,7 +21,7 @@ anyhow = "1" quote = { version = "1", optional = true } tauri-codegen = { version = "1.1.1", path = "../tauri-codegen", optional = true } tauri-utils = { version = "1.1.1", path = "../tauri-utils", features = [ "build", "resources" ] } -cargo_toml = "0.11" +cargo_toml = "0.12" serde_json = "1" heck = "0.4" json-patch = "0.2" diff --git a/core/tauri-build/src/lib.rs b/core/tauri-build/src/lib.rs index c57b5a5ba..a3cb65c39 100644 --- a/core/tauri-build/src/lib.rs +++ b/core/tauri-build/src/lib.rs @@ -226,6 +226,7 @@ pub fn try_build(attributes: Attributes) -> Result<()> { let features = match tauri { Dependency::Simple(_) => Vec::new(), Dependency::Detailed(dep) => dep.features, + Dependency::Inherited(dep) => dep.features, }; let all_cli_managed_features = TauriConfig::all_features();