diff --git a/deny.toml b/deny.toml index 66d5f52a9..b97327496 100644 --- a/deny.toml +++ b/deny.toml @@ -1,10 +1,13 @@ [advisories] -ignore = [] +ignore = [ + "RUSTSEC-2024-0370", # unmaintained - proc-macro-error +] yanked = "deny" [licenses] allow = [ "Apache-2.0", + "Apache-2.0 WITH LLVM-exception", "BSD-3-Clause", "ISC", "MIT", diff --git a/fpx-app/Cargo.toml b/fpx-app/Cargo.toml index d15fb86b5..fdfa29297 100644 --- a/fpx-app/Cargo.toml +++ b/fpx-app/Cargo.toml @@ -1,7 +1,11 @@ [package] name = "fpx-app" -version = "0.1.0" +description = "A Tauri App" edition = "2021" +version = { workspace = true } +authors = { workspace = true } +license = { workspace = true } +repository = { workspace = true } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index ebc4965ef..dd3e84419 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -10,7 +10,7 @@ repository = { workspace = true } anyhow = { workspace = true } clap = { workspace = true, features = ["derive", "env"] } fpx = { version = "0.1.0", path = "../fpx" } -fpx-app = { path = "../fpx-app" } +fpx-app = { version = "0.1.0", path = "../fpx-app" } schemars = { workspace = true } serde = { workspace = true } serde_json = { workspace = true }