[package] name = "cldr" repository = "https://github.com/mrhota/cldr-rs" homepage = "https://github.com/mrhota/cldr-rs" version = "29.0.0-alpha" authors = ["A.J. Gardner "] license = "Unlicense" keywords = ["cldr", "unicode", "l10n", "locale", "i18n"] build = "build.rs" description = """ cldr provides raw data and a thin wrapper around Unicode's Common Language Data Repository (CLDR). """ [build-dependencies] bzip2 = "0.3.0" git2 = "0.4.3" [dependencies] serde = "0.7.14" serde_macros = "0.7.14" serde_json = "0.7.4" bzip2 = { version = "0.3.0", optional = true } [features] default = ["all-modern", "compress"] # choose modern or full, but not both all-modern = ["modern", "core", "dates", "localenames", "misc", "rbnf", "segments", "units"] all-full = ["full", "core", "dates", "localenames", "misc", "rbnf", "segments", "units"] all-calendars = [ # "dates" includes gregorian data "dates", "bud", "chi", "cop", "dan", "eth", "heb", "ind", "isl", "jap", "per", "roc" ] modern = [] full = [] compress = ["bzip2"] core = [] dates = ["numbers"] localenames = [] misc = [] numbers = [] rbnf = [] segments = [] units = [] bud = [] chi = [] cop = [] dan = [] eth = [] heb = [] ind = [] isl = [] jap = [] per = [] roc = []