Skip to content

Commit f24498b

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 a1de8c0 commit f24498b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ Versioning].
1717
* https://github.com/stepancheg/rust-protobuf/issues/551
1818
* https://github.com/rust-lang/rust/issues/64266
1919

20+
- Remove the temporary workaround for the aforementioned Rust warning, since the
21+
newly generated Rust code semi-resolves it. See also:
22+
23+
* https://github.com/stepancheg/rust-protobuf/issues/551#issuecomment-802221146
24+
2025
### Changed
2126

2227
- 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)