Skip to content

Commit

Permalink
Resolve issues for cargo deny
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchan committed Sep 17, 2024
1 parent 601de15 commit 2e01931
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 5 additions & 1 deletion fpx-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 2e01931

Please sign in to comment.