[package]
edition = "2021"
name = "nex-cli"
version = "1.0.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A keyboard-first launcher for Windows"
homepage = "https://github.com/haxllo/nex"
readme = "README.md"
license = "MIT"
repository = "https://github.com/haxllo/nex"
[lib]
name = "nex_core"
path = "src/lib.rs"
[[bin]]
name = "nex"
path = "src/main.rs"
[[test]]
name = "action_executor_test"
path = "tests/action_executor_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "contract_test"
path = "tests/contract_test.rs"
[[test]]
name = "core_service_test"
path = "tests/core_service_test.rs"
[[test]]
name = "discovery_test"
path = "tests/discovery_test.rs"
[[test]]
name = "hotkey_runtime_test"
path = "tests/hotkey_runtime_test.rs"
[[test]]
name = "hotkey_test"
path = "tests/hotkey_test.rs"
[[test]]
name = "index_store_test"
path = "tests/index_store_test.rs"
[[test]]
name = "perf_query_latency_test"
path = "tests/perf_query_latency_test.rs"
[[test]]
name = "search_test"
path = "tests/search_test.rs"
[[test]]
name = "settings_test"
path = "tests/settings_test.rs"
[[test]]
name = "startup_test"
path = "tests/startup_test.rs"
[[test]]
name = "transport_test"
path = "tests/transport_test.rs"
[[test]]
name = "windows_runtime_smoke_test"
path = "tests/windows_runtime_smoke_test.rs"
[dependencies.json5]
version = "0.4.1"
[dependencies.rusqlite]
version = "0.37.0"
features = ["bundled"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.toml]
version = "0.8.19"
[dependencies.walkdir]
version = "2.5.0"
[build-dependencies.winres]
version = "0.1"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Graphics_Dwm",
"Win32_Graphics_Gdi",
"Win32_Security",
"Win32_System_Environment",
"Win32_System_LibraryLoader",
"Win32_System_Com",
"Win32_System_DataExchange",
"Win32_System_Ole",
"Win32_System_ProcessStatus",
"Win32_System_Registry",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_UI_Controls",
"Win32_UI_HiDpi",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_Shell_Common",
"Win32_UI_WindowsAndMessaging",
]