-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (85 loc) · 2.44 KB
/
Cargo.toml
File metadata and controls
93 lines (85 loc) · 2.44 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
[package]
name = "tsukimi"
version = "25.5.0"
edition = "2024"
rust-version = "1.85"
description = "A simple Jellyfin Client written by GTK4-RS"
license = "GPL-3.0"
[dependencies]
gtk = { version = "0.9", package = "gtk4", features = ["v4_18"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.49", features = ["full"] }
reqwest = { version = "0.12", default-features = false, features = [
"http2",
"rustls-tls",
"rustls-tls-native-roots",
"json",
"gzip",
] }
once_cell = "1.21.4"
dirs = "6.0.0"
adw = { version = "0.7", package = "libadwaita", features = ["v1_7"] }
bytefmt = "0.1.7"
libc = "0.2.183"
uuid = { version = "1.19", features = ["v4"] }
chrono = { version = "0.4.42", features = ["serde"] }
tracing = "0.1.43"
gst = { version = "0.23", package = "gstreamer" }
url = "2.5.8"
image = "0.25.9"
gettext-rs = { version = "~0.7", features = ["gettext-system"] }
hostname = "0.4.2"
epoxy = "0.1.0"
libloading = "0.8.9"
atomic-wait = "1.1.0"
flume = "0.12.0"
derive_builder = "0.20.2"
anyhow = "1.0.100"
tracing-subscriber = { version = "0.3.22", features = ["chrono"] }
regex = "1.12.3"
strsim = "0.11.1"
clap = { version = "4.5.53", features = ["derive"] }
fnv = "1.0.7"
rand = "0.9.2"
base64 = "0.22.1"
libmpv2 = "4.1.0"
danmakw = { git = "https://github.com/tsukinaha/danmakw.git" }
dandanapi = { git = "https://github.com/tsukinaha/dandanapi.git" }
glow = "0.16.0"
[build-dependencies]
embed-resource = "3.0.6"
glib-build-tools = "0.21.0"
[features]
console = [] # Enable console logging
default = ["protocols", "render"]
protocols = [] # Enable custom protocol callbacks
render = [] # Enable custom rendering
build_libmpv = [] # build libmpv automatically, provided MPV_SOURCE is set
[target.'cfg(target_os = "linux")'.dependencies]
mpris-server = "0.9.0"
xattr = { version = "1.6.1" }
gdk-x11 = { version = "0.9", package = "gdk4-x11", features = [
"v4_18",
"xlib",
] }
gdk-wayland = { version = "0.9", package = "gdk4-wayland", features = [
"v4_18",
"wayland_crate",
] }
[target.'cfg(target_os = "windows")'.dependencies]
libproxy = { version = "0.1.1" }
windows = { version = "0.62.2", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Power",
] }
[profile.release]
lto = true
strip = true
debug = "limited"
codegen-units = 1
[profile.dev]
debug = true