| # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO |
| # |
| # When uploading crates to the registry Cargo will automatically |
| # "normalize" Cargo.toml files for maximal compatibility |
| # with all versions of Cargo and also rewrite `path` dependencies |
| # to registry (e.g., crates.io) dependencies. |
| # |
| # If you are reading this file be aware that the original Cargo.toml |
| # will likely look very different (and much more reasonable). |
| # See Cargo.toml.orig for the original contents. |
| |
| [package] |
| edition = "2021" |
| name = "unicode-properties" |
| version = "0.1.2" |
| authors = [ |
| "Charles Lew <[email protected]>", |
| "Manish Goregaokar <[email protected]>", |
| ] |
| build = false |
| exclude = [ |
| "target/*", |
| "Cargo.lock", |
| ] |
| autobins = false |
| autoexamples = false |
| autotests = false |
| autobenches = false |
| description = """ |
| Query character Unicode properties according to |
| UAX #44 and UTR #51. |
| """ |
| homepage = "https://github.com/unicode-rs/unicode-properties" |
| documentation = "https://docs.rs/unicode-properties" |
| readme = "README.md" |
| keywords = [ |
| "text", |
| "unicode", |
| ] |
| categories = ["no-std::no-alloc"] |
| license = "MIT/Apache-2.0" |
| repository = "https://github.com/unicode-rs/unicode-properties" |
| |
| [lib] |
| name = "unicode_properties" |
| path = "src/lib.rs" |
| |
| [[test]] |
| name = "emoji" |
| path = "tests/emoji.rs" |
| |
| [[test]] |
| name = "general_category" |
| path = "tests/general_category.rs" |
| |
| [dependencies] |
| |
| [features] |
| default = [ |
| "general-category", |
| "emoji", |
| ] |
| emoji = [] |
| general-category = [] |