| 1 | [package] |
| 2 | name = "unicode-script" |
| 3 | version = "0.5.7" |
| 4 | authors = ["Manish Goregaokar <manishsmail@gmail.com>" ] |
| 5 | edition = "2018" |
| 6 | |
| 7 | homepage = "https://github.com/unicode-rs/unicode-script" |
| 8 | repository = "https://github.com/unicode-rs/unicode-script" |
| 9 | documentation = "https://docs.rs/unicode-script" |
| 10 | |
| 11 | license = "MIT OR Apache-2.0" |
| 12 | keywords = ["text" , "unicode" , "script" , "language" ] |
| 13 | readme = "README.md" |
| 14 | description = "" " |
| 15 | This crate exposes the Unicode `Script` and `Script_Extension` properties from [UAX #24](http://www.unicode.org/reports/tr24/) |
| 16 | " "" |
| 17 | |
| 18 | exclude = [ "target/*" , "Cargo.lock" , "scripts/tmp" , "*.txt" ] |
| 19 | |
| 20 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 21 | |
| 22 | [features] |
| 23 | rustc-dep-of-std = ['std' , 'core' , 'compiler_builtins' ] |
| 24 | bench = [] |
| 25 | |
| 26 | [dependencies] |
| 27 | std = { version = "1.0" , package = "rustc-std-workspace-std" , optional = true } |
| 28 | core = { version = "1.0" , package = "rustc-std-workspace-core" , optional = true } |
| 29 | compiler_builtins = { version = "0.1" , optional = true } |
| 30 | |