diff --git a/Cargo.toml b/Cargo.toml index fb30b06..2109686 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,3 +5,9 @@ edition = "2021" description = "Provides code to unescape string literals" license = "Apache-2.0 OR MIT" repository = "https://github.com/rust-lang/literal-escaper" + +[dependencies] +std = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-std' } + +[features] +rustc-dep-of-std = ["dep:std"]