[package] name = "unicode-script" version = "0.5.6" authors = ["Manish Goregaokar "] edition = "2018" homepage = "https://github.com/unicode-rs/unicode-script" repository = "https://github.com/unicode-rs/unicode-script" documentation = "https://docs.rs/unicode-script" license = "MIT OR Apache-2.0" keywords = ["text", "unicode", "script", "language"] readme = "README.md" description = """ This crate exposes the Unicode `Script` and `Script_Extension` properties from [UAX #24](http://www.unicode.org/reports/tr24/) """ exclude = [ "target/*", "Cargo.lock", "scripts/tmp", "*.txt" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] rustc-dep-of-std = ['std', 'core', 'compiler_builtins'] bench = [] [dependencies] std = { version = "1.0", package = "rustc-std-workspace-std", optional = true } core = { version = "1.0", package = "rustc-std-workspace-core", optional = true } compiler_builtins = { version = "0.1", optional = true }