1[package]
2name = "unicode-script"
3version = "0.5.6"
4authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
5edition = "2018"
6
7homepage = "https://github.com/unicode-rs/unicode-script"
8repository = "https://github.com/unicode-rs/unicode-script"
9documentation = "https://docs.rs/unicode-script"
10
11license = "MIT OR Apache-2.0"
12keywords = ["text", "unicode", "script", "language"]
13readme = "README.md"
14description = """
15This crate exposes the Unicode `Script` and `Script_Extension` properties from [UAX #24](http://www.unicode.org/reports/tr24/)
16"""
17
18exclude = [ "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]
23rustc-dep-of-std = ['std', 'core', 'compiler_builtins']
24bench = []
25
26[dependencies]
27std = { version = "1.0", package = "rustc-std-workspace-std", optional = true }
28core = { version = "1.0", package = "rustc-std-workspace-core", optional = true }
29compiler_builtins = { version = "0.1", optional = true }
30