-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (30 loc) · 1008 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "heimdall-cli"
version = "0.2.0"
edition = "2021"
description = "A simple hotkey daemon. Primarily tested on MacOS"
homepage = "https://github.com/uzaaft/heimdall"
documentation = "https://github.com/uzaaft/heimdall"
repository = "https://github.com/uzaaft/heimdall"
license = "MIT"
[[bin]]
name = "heim"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Windowing
winit = { version = "0.30", default-features = false }
global-hotkey = { version = "0.6", path = "./crates/global-hotkey" }
# Misc
anyhow = { version = "1" }
serde = { version = "1" }
# Toml reading
toml = { version = "0.8", default-features = false, features = ["parse"] }
# Logging
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"env-filter",
] }
# File locking
fs4 = { version = "0.12", features = ["sync"], default-features = false }