Bug 1918093: Convert servo_arc to edition 2021 (r=emilio)

Signed-off-by: Nico Burns <nico@nicoburns.com>

Differential Revision: https://phabricator.services.mozilla.com/D221818
This commit is contained in:
Nico Burns 2024-09-19 13:06:57 +00:00
parent 3b2f2b98a9
commit 07808cd6dc
2 changed files with 1 additions and 4 deletions

View File

@ -5,6 +5,7 @@ authors = ["The Servo Project Developers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/servo"
description = "A fork of std::sync::Arc with some extra functionality and without weak references"
edition = "2021"
[lib]
name = "servo_arc"

View File

@ -25,10 +25,6 @@
// duplicate those here.
#![allow(missing_docs)]
#[cfg(feature = "servo")]
extern crate serde;
extern crate stable_deref_trait;
#[cfg(feature = "servo")]
use serde::{Deserialize, Serialize};
use stable_deref_trait::{CloneStableDeref, StableDeref};