diff --git a/Cargo.toml b/Cargo.toml index 4fc4192..b3dbda7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [workspace] -resolver = "2" +resolver = "3" [workspace.package] repository = "https://github.com/rust-cli/proc-exit" license = "MIT OR Apache-2.0" -edition = "2021" -rust-version = "1.74" # MSRV +edition = "2024" +rust-version = "1.85" # MSRV include = [ "build.rs", "src/**/*", diff --git a/src/lib.rs b/src/lib.rs index c157cfd..456ed97 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -98,8 +98,8 @@ pub mod sysexits; pub use code::Code; pub use exit::WithCodeResultExt; -pub use exit::{exit, report}; pub use exit::{Exit, ExitResult}; +pub use exit::{exit, report}; #[doc = include_str!("../README.md")] #[cfg(doctest)]