# SPDX-FileCopyrightText: Peter Pentchev # SPDX-License-Identifier: BSD-2-Clause [package] name = "utf8-locale" version = "1.0.3" edition = "2021" rust-version = "1.58" authors = ["Peter Pentchev "] description = "Detect a UTF-8-capable locale for running child processes in" readme = "README.md" homepage = "https://gitlab.com/ppentchev/utf8-locale/" repository = "https://gitlab.com/ppentchev/utf8-locale" license = "BSD-2-Clause" categories = ["command-line-utilities"] keywords = ["UTF-8", "utf8", "locale", "subprocess"] [[bin]] name = "u8loc" path = "rust/main.rs" [lib] path = "rust/lib.rs" [dependencies] anyhow = "1.0.66" encoding = "0.2" getopts = "0.2" once_cell = "1.15.0" regex = "1" thiserror = "1.0.37" [dev-dependencies] serde = { version = "1.0.147", features = ["derive"] } serde_json = "1.0.87"