Skip to content

Commit 533fb9c

Browse files
committed
Remove never_type feature gate
The stabilization for this feature has landed in nightly.
1 parent 4eb5807 commit 533fb9c

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

serde/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
// discussion of these features please refer to this issue:
8383
//
8484
// https://github.com/serde-rs/serde/issues/812
85-
#![cfg_attr(feature = "unstable", feature(specialization, never_type))]
85+
#![cfg_attr(feature = "unstable", feature(specialization))]
8686
#![allow(unknown_lints, bare_trait_objects, deprecated)]
8787
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
8888
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]

test_suite/tests/test_de.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![allow(clippy::decimal_literal_representation, clippy::unreadable_literal)]
2-
#![cfg_attr(feature = "unstable", feature(never_type))]
32

43
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
54
use std::default::Default;

test_suite/tests/test_ser.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![allow(clippy::unreadable_literal)]
2-
#![cfg_attr(feature = "unstable", feature(never_type))]
32

43
use std::cell::RefCell;
54
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};

0 commit comments

Comments
 (0)