You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Newest release of paru builds with warnings from cargo, as well as some failed tests from cargo test --features mock. Although I'm not sure how critical this is.
Output
The text was updated successfully, but these errors were encountered:
warning: fields base and ss_repo are never read
--> src/config.rs:80:9
|
73 | pub struct Colors {
| ------ fields in this struct
...
80 | pub base: Style,
| ^^^^
...
86 | pub ss_repo: Style,
| ^^^^^^^
|
= note: Colors has derived impls for the traits Clone and Debug, but these are intentionally ignored during dead code analysis
= note: #[warn(dead_code)] on by default
warning: fields pkgbuild_skip and aur_skip are never read
--> src/upgrade.rs:20:9
|
17 | pub struct Upgrades {
| -------- fields in this struct
...
20 | pub pkgbuild_skip: Vec<(String, String)>,
| ^^^^^^^^^^^^^
...
24 | pub aur_skip: Vec,
| ^^^^^^^^
|
= note: Upgrades has a derived impl for the trait Debug, but this is intentionally ignored during dead code analysis
Affected Version
paru v2.0.4 - libalpm v15.0.0
Description
Newest release of paru builds with warnings from cargo, as well as some failed tests from
cargo test --features mock
. Although I'm not sure how critical this is.Output
The text was updated successfully, but these errors were encountered: