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" 14name = "unicode-normalization" 15version = "0.1.22" 16authors = [ 17 "kwantam <[email protected]>", 18 "Manish Goregaokar <[email protected]>", 19] 20exclude = [ 21 "target/*", 22 "Cargo.lock", 23 "scripts/tmp", 24 "*.txt", 25 "tests/*", 26] 27description = """ 28This crate provides functions for normalization of 29Unicode strings, including Canonical and Compatible 30Decomposition and Recomposition, as described in 31Unicode Standard Annex #15. 32""" 33homepage = "https://github.com/unicode-rs/unicode-normalization" 34documentation = "https://docs.rs/unicode-normalization/" 35readme = "README.md" 36keywords = [ 37 "text", 38 "unicode", 39 "normalization", 40 "decomposition", 41 "recomposition", 42] 43license = "MIT/Apache-2.0" 44repository = "https://github.com/unicode-rs/unicode-normalization" 45 46[dependencies.tinyvec] 47version = "1" 48features = ["alloc"] 49 50[features] 51default = ["std"] 52std = [] 53