• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.36"
15name = "unicode-normalization"
16version = "0.1.24"
17authors = [
18    "kwantam <kwantam@gmail.com>",
19    "Manish Goregaokar <manishsmail@gmail.com>",
20]
21build = false
22exclude = [
23    "target/*",
24    "Cargo.lock",
25    "scripts/tmp",
26    "*.txt",
27    "tests/*",
28]
29autobins = false
30autoexamples = false
31autotests = false
32autobenches = false
33description = """
34This crate provides functions for normalization of
35Unicode strings, including Canonical and Compatible
36Decomposition and Recomposition, as described in
37Unicode Standard Annex #15.
38"""
39homepage = "https://github.com/unicode-rs/unicode-normalization"
40documentation = "https://docs.rs/unicode-normalization/"
41readme = "README.md"
42keywords = [
43    "text",
44    "unicode",
45    "normalization",
46    "decomposition",
47    "recomposition",
48]
49license = "MIT/Apache-2.0"
50repository = "https://github.com/unicode-rs/unicode-normalization"
51
52[lib]
53name = "unicode_normalization"
54path = "src/lib.rs"
55
56[[bench]]
57name = "bench"
58path = "benches/bench.rs"
59
60[dependencies.tinyvec]
61version = "1"
62features = ["alloc"]
63
64[features]
65default = ["std"]
66std = []
67