[package]
edition = "2021"
name = "ukraine"
version = "2.0.0"
authors = ["Mykhailo Krainik <https://github.com/mykhailokrainik>"]
build = false
exclude = [".gitignore"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Glory to Ukraine. Library for transliterating Ukrainian Cyrillic text into Latin script representation"
homepage = "https://github.com/mykhailokrainik/ukraine-rs"
readme = "README.md"
keywords = [
"ukrainian",
"dstu9112",
"transliteration",
"cyrillic",
"latin",
]
license = "AGPL-3.0-only"
repository = "https://github.com/mykhailokrainik/ukraine-rs"
[features]
datetime = ["chrono"]
default = [
"greeting",
"lozynsky",
"dstu9112a",
"dstu9112b",
"kmu55",
"jirecek",
"gajica",
"datetime",
"numbers",
]
dstu9112a = []
dstu9112b = []
gajica = []
greeting = []
jirecek = []
kmu55 = []
lozynsky = []
numbers = []
[lib]
name = "ukraine"
path = "src/lib.rs"
[[test]]
name = "dstu9112a"
path = "tests/dstu9112a.rs"
[[test]]
name = "dstu9112b"
path = "tests/dstu9112b.rs"
[[test]]
name = "kmu55"
path = "tests/kmu55.rs"
[[test]]
name = "latin"
path = "tests/latin.rs"
[[test]]
name = "numbers"
path = "tests/numbers.rs"
[[test]]
name = "numbers_dstu9112a"
path = "tests/numbers_dstu9112a.rs"
[dependencies.chrono]
version = "0.4.38"
features = ["clock"]
optional = true
default-features = false
[profile.dev]
opt-level = 0
debug = 2
incremental = true
[profile.release]
strip = true