# This file is part of ICU4X. For terms of use, please see the file # called LICENSE at the top level of the ICU4X source tree # (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). [package] name = "icu_provider_uprops" description = "Data provider that reads from `icuwriteuprops` output from ICU4C" version = "0.5.0" authors = ["The ICU4X Project Developers"] edition = "2018" readme = "README.md" repository = "https://github.com/unicode-org/icu4x" license-file = "LICENSE" categories = ["internationalization"] # Keep this in sync with other crates unless there are exceptions include = [ "src/**/*", "examples/**/*", "benches/**/*", "tests/**/*", "Cargo.toml", "LICENSE", "README.md" ] [package.metadata.docs.rs] all-features = true [dependencies] displaydoc = { version = "0.2.3", default-features = false } icu_codepointtrie = { version = "0.3.3", path = "../../utils/codepointtrie", features = ["provider_serde"] } icu_properties = { version = "0.5", path = "../../components/properties", features = ["provider_serde", "std"] } icu_provider = { version = "0.5", path = "../../provider/core", features = ["serialize", "std"] } icu_uniset = { version = "0.4.1", path = "../../utils/uniset", features = ["provider_serde"] } serde = { version = "1.0", features = ["derive"] } toml = { version = "0.5" } zerovec = { version = "0.6", path = "../../utils/zerovec", features = ["serde", "yoke"] } log = { version = "0.4", optional = true } eyre = "0.6.5" tinystr = "0.4" [dev-dependencies] icu_testdata = { version = "0.5", path = "../../provider/testdata" }