-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addresses findings from the first Fedora review. Also includes some other distantly related, but supportive, changes. Addresses several findings from first Fedora review (#715): - Adding desktop file - Adding man page - Proper installation of translated help - Cleaning up lints in the spec - Reduces rpm deps by removing tool-only deps Also - Upgrades Clap - Makes the top level Rust project a virtual project - Makes crates/tools a standalone crate - Upgrades some Actions - Adds a checksum to wf to aid in debugging Closes #616 Closes #722 Closes #723 # Conflicts: # Cargo.toml # crates/pyo3/src/check.rs # crates/tools/src/fapolicy_profiler.rs # fapolicy-analyzer.spec # help/__init__.py # scripts/srpm/fapolicy-analyzer.spec
- Loading branch information
Showing
12 changed files
with
156 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,11 @@ | ||
[package] | ||
name = "fapolicy-tools" | ||
description = "Tools to assist with the configuration and maintenance of fapolicyd" | ||
license = "GPL-3.0-or-later" | ||
version = "0.5.0" | ||
edition = "2018" | ||
|
||
[[bin]] | ||
name = "tdb" | ||
path = "crates/tools/trust_db_util.rs" | ||
|
||
[[bin]] | ||
name = "rulec" | ||
path = "crates/tools/rule_check.rs" | ||
|
||
[[test]] | ||
name = "integration" | ||
path = "tests/tests.rs" | ||
|
||
[workspace] | ||
members = [ | ||
"crates/analyzer", | ||
"crates/app", | ||
"crates/daemon", | ||
"crates/pyo3", | ||
"crates/rules", | ||
"crates/tools", | ||
"crates/trust", | ||
"crates/util", | ||
] | ||
|
||
[dev-dependencies] | ||
|
||
[dependencies] | ||
clap = "3.0.0-beta.2" | ||
lmdb-rkv = "0.14.0" | ||
nom = "6.1.0" | ||
rayon = "1.5" | ||
thiserror = "1.0" | ||
ariadne = "0.1" | ||
|
||
fapolicy-analyzer = { version = "*", path = "crates/analyzer" } | ||
fapolicy-app = { version = "*", path = "crates/app" } | ||
fapolicy-daemon = { version = "*", path = "crates/daemon" } | ||
fapolicy-rules = { version = "*", path = "crates/rules" } | ||
fapolicy-trust = { version = "*", path = "crates/trust" } | ||
fapolicy-util = { version = "*", path = "crates/util" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[package] | ||
name = "fapolicy-tools" | ||
description = "Tools to assist with the configuration and maintenance of fapolicyd" | ||
license = "GPL-3.0-or-later" | ||
version = "0.5.0" | ||
edition = "2018" | ||
|
||
[[bin]] | ||
name = "tdb" | ||
path = "src/trust_db_util.rs" | ||
|
||
[[bin]] | ||
name = "rulec" | ||
path = "src/rule_check.rs" | ||
|
||
[dependencies] | ||
clap = { version = "3.2.20", features = ["derive"] } | ||
lmdb-rkv = "0.14.0" | ||
nom = "6.1.0" | ||
rayon = "1.5" | ||
thiserror = "1.0" | ||
ariadne = "0.1" | ||
|
||
fapolicy-analyzer = { version = "*", path = "../analyzer" } | ||
fapolicy-app = { version = "*", path = "../app" } | ||
fapolicy-daemon = { version = "*", path = "../daemon" } | ||
fapolicy-rules = { version = "*", path = "../rules" } | ||
fapolicy-trust = { version = "*", path = "../trust" } | ||
fapolicy-util = { version = "*", path = "../util" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.