[package]
edition = "2024"
name = "langcodec-cli"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A universal CLI tool for converting and inspecting localization files (Apple, Android, CSV, etc.)"
homepage = "https://github.com/WendellXY/langcodec"
documentation = "https://docs.rs/langcodec-cli"
readme = "README.md"
keywords = [
"localization",
"i18n",
"cli",
"android",
"apple",
]
categories = [
"command-line-utilities",
"internationalization",
"localization",
]
license = "MIT"
repository = "https://github.com/WendellXY/langcodec"
resolver = "2"
[lib]
name = "langcodec_cli"
path = "src/lib.rs"
[[bin]]
name = "langcodec"
path = "src/main.rs"
[[test]]
name = "android_plurals_cli_tests"
path = "tests/android_plurals_cli_tests.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "diff_cli_tests"
path = "tests/diff_cli_tests.rs"
[[test]]
name = "edit_cli_tests"
path = "tests/edit_cli_tests.rs"
[[test]]
name = "format_edge_cases"
path = "tests/format_edge_cases.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "langcodec_comma_syntax_tests"
path = "tests/langcodec_comma_syntax_tests.rs"
[[test]]
name = "langcodec_filter_tests"
path = "tests/langcodec_filter_tests.rs"
[[test]]
name = "langcodec_format_tests"
path = "tests/langcodec_format_tests.rs"
[[test]]
name = "langcodec_include_tests"
path = "tests/langcodec_include_tests.rs"
[[test]]
name = "langcodec_output_simple_tests"
path = "tests/langcodec_output_simple_tests.rs"
[[test]]
name = "merge_tests"
path = "tests/merge_tests.rs"
[[test]]
name = "normalize_cli_tests"
path = "tests/normalize_cli_tests.rs"
[[test]]
name = "plural_validation_cli_tests"
path = "tests/plural_validation_cli_tests.rs"
[[test]]
name = "stats_cli_tests"
path = "tests/stats_cli_tests.rs"
[[test]]
name = "sync_cli_tests"
path = "tests/sync_cli_tests.rs"
[[test]]
name = "unicode_roundtrip_tests"
path = "tests/unicode_roundtrip_tests.rs"
[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"
[dependencies.atty]
version = "0.2.14"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.glob]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.langcodec]
version = "0.8.0"
[dependencies.rayon]
version = "1.10"
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.unic-langid]
version = "0.9.6"
[dependencies.unicode-width]
version = "0.2.1"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.tempfile]
version = "3.8"