forked from unicode-rs/unicode-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (23 loc) · 1023 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "unicode-script"
version = "0.5.7"
authors = ["Manish Goregaokar <[email protected]>"]
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 }