rust-switcher 1.0.8

Windows keyboard layout switcher and text conversion utility
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rust-switcher"
version = "1.0.8"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Windows keyboard layout switcher and text conversion utility"
homepage = "https://github.com/qqrm/rust-switcher"
readme = "README.md"
keywords = [
    "windows",
    "winapi",
    "keyboard",
    "hotkey",
    "tray",
]
categories = [
    "gui",
    "os::windows-apis",
]
license = "MIT"
repository = "https://github.com/qqrm/rust-switcher"

[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ version }-{ target }.zip"
bin-dir = "{ bin }{ binary-ext }"

[features]
debug-tracing = [
    "tracing-subscriber",
    "tracing-appender",
]
default = []

[lib]
name = "rust_switcher"
path = "src/lib.rs"

[[bin]]
name = "rust-switcher"
path = "src/main.rs"

[dependencies.confy]
version = "2.0"

[dependencies.lingua]
version = "1.8"
features = [
    "english",
    "russian",
]
default-features = false

[dependencies.rust-switcher-core]
version = "1.0.8"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.tracing]
version = "0.1"
features = ["release_max_level_off"]

[dependencies.tracing-appender]
version = "0.2"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "fmt",
    "env-filter",
]
optional = true

[dev-dependencies.tracing-test]
version = "0.2.6"

[build-dependencies.embed-resource]
version = "3.0"

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Win32_Foundation",
    "Win32_Graphics_Gdi",
    "Win32_UI_Input_KeyboardAndMouse",
    "Win32_UI_WindowsAndMessaging",
    "Win32_System_Threading",
    "Win32_System_SystemServices",
    "Win32_System_LibraryLoader",
    "Win32_Security",
    "Win32_UI_Shell",
    "Win32_UI_Controls",
    "Win32_System_DataExchange",
    "Win32_System_Memory",
    "Win32_System_Diagnostics_Debug",
    "Win32_System_Com",
    "Win32_UI_Accessibility",
    "Win32_System_SystemInformation",
    "Win32_System_Ole",
    "Win32_Storage_FileSystem",
    "Win32_Graphics_Dwm",
]

[target."cfg(windows)".build-dependencies.windows]
version = "0.62"
features = ["Win32_System_SystemServices"]

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = 0
panic = "abort"
incremental = false
strip = "symbols"