From eab1643d3cfe80c9d6a22dcd5d9f41a3c35ed7b7 Mon Sep 17 00:00:00 2001 From: Arthur Carcano <53921575+krtab@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:04:43 +0100 Subject: [PATCH] Add edition manifest key --- Cargo.toml | 1 + crates/capi/Cargo.toml | 1 + crates/native-c/Cargo.toml | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index b378063..129a39d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ documentation = "https://docs.rs/rustc-demangle" description = """ Rust compiler symbol demangling. """ +edition = "2015" [workspace] members = ["crates/capi", "fuzz"] diff --git a/crates/capi/Cargo.toml b/crates/capi/Cargo.toml index a59a768..d4e68dd 100644 --- a/crates/capi/Cargo.toml +++ b/crates/capi/Cargo.toml @@ -7,6 +7,7 @@ C API for the `rustc-demangle` crate """ license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/rustc-demangle" +edition = "2015" [lib] name = "rustc_demangle" diff --git a/crates/native-c/Cargo.toml b/crates/native-c/Cargo.toml index 920a63f..824ac1f 100644 --- a/crates/native-c/Cargo.toml +++ b/crates/native-c/Cargo.toml @@ -7,6 +7,7 @@ Native C version of the rustc_demangle crate """ license = "MIT/Apache-2.0" repository = "https://github.com/rust-lang/rustc-demangle" +edition = "2015" [lib] name = "rustc_demangle_native_c"