Skip to content

Commit 2f26b60

Browse files
committed
Remove temporary workaround for rust-protobuf
Remove #![allow(soft_unstable)], which was previously added to workaround an issue in rust-protobuf [1]. This issue has been semi-resolved upstream [2], so we can deny this warning once more. [1]: stepancheg/rust-protobuf#551 [2]: stepancheg/rust-protobuf#551 (comment)
1 parent 58aa5d5 commit 2f26b60

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ Versioning].
77

88
## [Unreleased]
99

10-
### Fixed
11-
12-
- Temporarily fix a build error for nightly Rust. In a nutshell, the generated
13-
Rust code for our proto files triggers a compiler warning in nightly Rust,
14-
which we ultimately treat as an error. Until this is fixed upstream, we
15-
silence this warning. See also:
16-
17-
* https://github.com/stepancheg/rust-protobuf/issues/551
18-
* https://github.com/rust-lang/rust/issues/64266
19-
2010
### Changed
2111

2212
- Bump the dialoguer dependency to v0.8.0, to fix a compilation error.

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@
3939
unused_results,
4040
variant_size_differences
4141
)]
42-
// FIXME: This must be removed once this is solved:
43-
// https://github.com/stepancheg/rust-protobuf/issues/551
44-
#![allow(soft_unstable)]
4542

4643
pub mod aead;
4744
pub mod cryptors;

0 commit comments

Comments
 (0)