[package]
edition = "2021"
rust-version = "1.70"
name = "intl"
version = "0.1.0"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust, no_std internationalization primitives. Provides a `unicode` module (General_Category + character predicates) with property tables compiled into const-fn match lookups and feature-selectable codepoint ranges."
readme = "README.md"
keywords = [
"intl",
"unicode",
"no_std",
"i18n",
"ucd",
]
categories = [
"no-std",
"internationalization",
"text-processing",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/unicoders"
[features]
ascii = []
bmp = ["latin1"]
default = ["bmp"]
full = ["bmp"]
latin1 = ["ascii"]
[lib]
name = "intl"
path = "src/lib.rs"