-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (113 loc) · 3.15 KB
/
Cargo.toml
File metadata and controls
118 lines (113 loc) · 3.15 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[package]
name = "vleer"
description = "Music, but without the subscription."
version = "0.1.0"
edition = "2024"
authors = ["PandaDEV <hello@pandadev.net>"]
homepage = "https://vleer.app"
repository = "https://github.com/vleerapp/vleer"
license = "AGPL-3.0"
categories = ["multimedia::audio"]
[dependencies]
gpui = { git = "https://github.com/vleerapp/zed" }
gpui_macros = { git = "https://github.com/vleerapp/zed" }
gpui_platform = { git = "https://github.com/vleerapp/zed", features = [
"font-kit",
"x11",
"wayland",
"runtime_shaders",
] }
anyhow = "1.0.102"
dirs = "6.0.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
tokio = { version = "1.50.0", features = ["full"] }
futures = "0.3.32"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "chrono"] }
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.1.0+spec-1.1.0"
rodio = { git = "https://github.com/vleerapp/rodio", branch = "feat/registry", features = [
"symphonia",
"symphonia-all",
] }
symphonia-adapter-libopus = "0.2.7"
symphonia-format-isomp4 = "0.5.5"
symphonia = "0.5.5"
cuid2 = "0.1.4"
url = "2.5.8"
rust-embed = "8.11.0"
lofty = "0.23.3"
walkdir = "2.5.0"
notify = "8.2.0"
notify-debouncer-full = "0.7.0"
image = "0.25.10"
sha2 = "0.11.0"
indexmap = "2.13.0"
rustc-hash = "2.1.2"
unicode-segmentation = "1.13.2"
lru = "0.16.3"
lazy_static = "1.5.0"
dashmap = "6.1.0"
reqwest = { version = "0.13.2", features = ["json"] }
uuid = { version = "1.23.0", features = ["serde", "v4"] }
souvlaki = "0.8.3"
spectrum-analyzer = "1.7.0"
discord-rich-presence = "1.1.0"
chrono = "0.4.44"
base64 = "0.22.1"
itertools = "0.14.0"
rand = "0.10.0"
async-trait = "0.1.89"
raw-window-handle = "0.6.2"
[target.'cfg(target_os = "linux")'.dependencies]
mpris-server = "0.9.0"
zbus = "5.14.0"
[target.'cfg(target_os = "macos")'.dependencies]
core-text = "=21.0.0" # GPUI issue, zed#47168
block2 = "0.6.2"
imagesize = "0.14.0"
objc2 = "0.6.4"
objc2-app-kit = { version = "0.3.2", features = ["NSImage"] }
objc2-core-foundation = { version = "0.3.2", features = ["CFCGTypes"] }
objc2-foundation = { version = "0.3.2", features = [
"NSData",
"NSDictionary",
"NSValue",
] }
objc2-media-player = { version = "0.3.2", features = [
"MPNowPlayingInfoCenter",
] }
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.62.2", features = [
"Devices_Enumeration",
"Foundation_Collections",
"Media",
"Media_Audio",
"Media_MediaProperties",
"Media_Render",
"Storage_Search",
"Storage_Streams",
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Com",
"Win32_System_WinRT",
] }
windows-future = "0.3.2"
windows-result = "0.4.1"
[package.metadata.packager]
product_name = "Vleer"
description = "Music, but without the subscription."
authors = ["PandaDEV <hello@pandadev.net>"]
homepage = "https://vleer.app"
category = "Music"
identifier = "app.vleerapp.vleer"
before_packaging_command = "cargo build --release"
icons = [
"assets/images/icon.png",
"assets/images/icon-512.png",
"assets/images/icon-256.png",
"assets/images/icon-128.png",
"assets/images/icon.icns",
]
out_dir = "target/release/bundles"
formats = ["all"]