[package]
edition = "2024"
name = "typechar"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type any Unicode string on macOS, regardless of keyboard layout"
readme = "README.md"
keywords = [
"macos",
"unicode",
"keyboard",
"karabiner",
"hotkey",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/blaueeiner/typechar"
[package.metadata.docs.rs]
default-target = "aarch64-apple-darwin"
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
[lib]
name = "typechar"
path = "src/lib.rs"
[[bin]]
name = "typechar"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.core-graphics]
version = "0.25.0"
[dependencies.thiserror]
version = "2.0.18"
[profile.release]
lto = true
strip = true