diff options
| author | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-12-03 04:27:15 +0000 |
|---|---|---|
| committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-12-03 04:48:20 +0000 |
| commit | 4dce4388e4395dbb63a8e20ac9deb578a2ba5689 (patch) | |
| tree | f5f39ece76befbb852be25a8504262dc8fc2ecb4 | |
| parent | 45ac01128f797d52763ac56a6bfa867aad1bc656 (diff) | |
devel/gitui: Unbreak build with Rust 1.57.0 (D33190)
error: field is never read: `hash`
--> asyncgit/src/blame.rs:28:5
|
28 | hash: u64,
| ^^^^^^^^^
|
note: the lint level is defined here
--> asyncgit/src/lib.rs:7:5
|
7 | dead_code,
| ^^^^^^^^^
error: field is never read: `hash`
--> asyncgit/src/diff.rs:41:5
|
41 | hash: u64,
| ^^^^^^^^^
error: field is never read: `request`
--> asyncgit/src/fetch.rs:28:5
|
28 | request: FetchRequest,
| ^^^^^^^^^^^^^^^^^^^^^
error: field is never read: `request`
--> asyncgit/src/push.rs:30:5
|
30 | request: PushRequest,
| ^^^^^^^^^^^^^^^^^^^^
error: field is never read: `request`
--> asyncgit/src/push_tags.rs:26:5
|
26 | request: PushTagsRequest,
| ^^^^^^^^^^^^^^^^^^^^^^^^
error: could not compile `asyncgit` due to 5 previous errors
http://package22.nyi.freebsd.org/data/130amd64-default-foo/2021-12-02_10h34m54s/logs/errors/gitui-0.16.2_3.log
PR: 260140
| -rw-r--r-- | devel/gitui/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/gitui/Makefile b/devel/gitui/Makefile index 30be44d817a5..a30272ae4917 100644 --- a/devel/gitui/Makefile +++ b/devel/gitui/Makefile @@ -186,6 +186,7 @@ CARGO_CRATES= addr2line-0.15.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xml-rs-0.8.3 \ yaml-rust-0.4.5 +RUSTFLAGS+= --cap-lints=warn PLIST_FILES= bin/${PORTNAME} BINARY_ALIAS= python3=${PYTHON_CMD} # xcb requires python3 |
