-
Notifications
You must be signed in to change notification settings - Fork 71
/
Cargo.toml
91 lines (82 loc) · 2.36 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "loungy"
version = "0.1.3"
edition = "2021"
rust-version = "1.80.0"
description = "Loungy is a WIP launcher in the vein of Raycast and Alfred."
[package.metadata.packager]
product_name = "Loungy"
identifier = "app.loungy"
copyright = "Copyright (c) Matthias Grandl 2024. All rights reserved."
category = "Productivity"
target_triple = "universal-apple-darwin"
icons = ["icons/*.png"]
[package.metadata.packager.macos]
entitlements = "macos/entitlements.plist"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
swift-rs = { version = "1.0.6", features = ["build"] }
[dependencies]
catppuccin = "1.3.0"
global-hotkey = "0.4.2"
gpui = { git = "https://github.com/zed-industries/zed" }
#gpui = { path = "/Users/matthias/zed/crates/gpui" }
nucleo = "0.3.0"
parking_lot = "0.12.1"
serde = "1.0.195"
serde_json = "1.0.111"
numbat = "1.10.0"
numbat-exchange-rates = "0.5.0"
whoami = { version = "1.4.1", default-features = false }
anyhow = "1.0.79"
rust-embed = "8.2.0"
regex = "1.10.3"
bonsaidb = { version = "0.5.0", features = ["local-full"] }
log = "0.4.20"
toml = "0.8.10"
env_logger = "0.11.1"
url = "2.5.0"
async-std = { version = "1.12.0", features = [
"unstable",
"attributes",
"tokio1",
] }
futures = "0.3.30"
matrix-sdk-crypto = { version = "0.7.0", optional = true }
matrix-sdk = { version = "0.7.1", default_features = false, optional = true, features = [
"e2e-encryption",
"markdown",
"socks",
"anyhow",
"image-proc",
"experimental-sliding-sync",
"sqlite",
"bundled-sqlite",
"native-tls",
] }
matrix-sdk-ui = { version = "0.7.0", optional = true }
rand = "0.8.5"
arboard = { version = "3.3.1", optional = true }
image = "0.23"
crossbeam-channel = "0.5.12"
reqwest = "0.11.24"
quick-xml = "0.31.0"
scraper = "0.19.0"
clap = { version = "4.5.7", features = ["cargo", "derive", "string"] }
notify = "6.1.1"
notify-debouncer-full = "0.3.1"
jiff = { version = "0.1.3", features = ["serde"] }
[target.'cfg(target_os = "macos")'.dependencies]
swift-rs = "1.0.6"
cocoa = "0.25.0"
[target.'cfg(target_os = "linux")'.dependencies]
freedesktop_entry_parser = "1.3.0"
freedesktop-icons = "0.2.6"
walkdir = "2.5.0"
[features]
tailscale = []
bitwarden = []
clipboard = ["dep:arboard"]
matrix = ["dep:matrix-sdk", "dep:matrix-sdk-crypto", "dep:matrix-sdk-ui"]
[[bin]]
name = "loungy"