| 1 | [package] |
| 2 | name = "rustc-literal-escaper" |
| 3 | version = "0.0.5" |
| 4 | edition = "2021" |
| 5 | description = "Provides code to unescape string literals" |
| 6 | license = "Apache-2.0 OR MIT" |
| 7 | repository = "https://github.com/rust-lang/literal-escaper" |
| 8 | rust-version = "1.89" # for NonZero<char> |
| 9 | |
| 10 | [dependencies] |
| 11 | std = { version = '1.0.0' , optional = true, package = 'rustc-std-workspace-std' } |
| 12 | core = { version = '1.0.0' , optional = true, package = 'rustc-std-workspace-core' } |
| 13 | |
| 14 | [features] |
| 15 | rustc-dep-of-std = ["dep:std" , "dep:core" ] |
| 16 | |