1[package] 2name = "ucd-trie" 3version = "0.1.3" #:version 4authors = ["Andrew Gallant <jamslam@gmail.com>"] 5description = """ 6A trie for storing Unicode codepoint sets and maps. 7""" 8documentation = "https://docs.rs/ucd-trie" 9homepage = "https://github.com/BurntSushi/ucd-generate" 10repository = "https://github.com/BurntSushi/ucd-generate" 11readme = "README.md" 12keywords = ["unicode", "database", "character", "codepoint", "trie"] 13license = "MIT/Apache-2.0" 14edition = "2018" 15 16[dev-dependencies] 17lazy_static = "1" 18 19[features] 20default = ["std"] 21std = [] 22