| 1 | [package] |
|---|---|
| 2 | name = "rustc-literal-escaper" |
| 3 | version = "0.0.2" |
| 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 | |
| 9 | [dependencies] |
| 10 | std = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-std'} |
| 11 | |
| 12 | [features] |
| 13 | rustc-dep-of-std = ["dep:std"] |
| 14 |
