Skip to content

Commit 36bc5b3

Browse files
committed
Make CI happy by removing no-std-net/serde (not supported in Cargo.toml on older rust versions)
1 parent 3efe254 commit 36bc5b3

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

idna/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
//! > allowing client software to access domains that are valid under either system.
3434
#![no_std]
3535
#[cfg_attr(feature = "unstable", feature("error_in_core"))]
36-
3736
// For forwards compatibility
3837
#[cfg(feature = "std")]
3938
extern crate std;

idna/src/uts46.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ impl From<Errors> for Result<(), Errors> {
714714
impl std::error::Error for Errors {}
715715

716716
#[cfg(feature = "nightly")]
717-
impl core::error::Error for Errors{}
717+
impl core::error::Error for Errors {}
718718

719719
impl fmt::Display for Errors {
720720
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {

url/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ alloc = []
4444
debugger_visualizer = []
4545
# Expose internal offsets of the URL.
4646
expose_internals = []
47-
serde = ["dep:serde", "no-std-net/serde"]
4847
# For no_std: Allow the use of no_std_net instead of nightly
4948
no_std_net = ["no-std-net"]
5049
# For no_std: Use errors_in_core and net_in_core

0 commit comments

Comments
 (0)