-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (82 loc) · 3.3 KB
/
Cargo.toml
File metadata and controls
97 lines (82 loc) · 3.3 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
[package]
name = "madamiru"
version = "0.4.1"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2024"
description = "Dynamic multi-multimedia player"
repository = "https://github.com/mtkennerly/madamiru"
readme = "README.md"
license = "MIT"
[features]
default = ["audio", "video"]
audio = ["dep:rodio"]
video = ["dep:gstreamer", "dep:gstreamer-app", "dep:iced_video_player"]
[dependencies]
chrono = { version = "0.4.40", features = ["serde"] }
clap = { version = "4.5.34", features = ["derive", "wrap_help"] }
clap_complete = "4.5.47"
dirs = "6.0.0"
flexi_logger = { version = "0.29.8", features = ["textfilter"], default-features = false }
fluent = "0.16.1"
globetter = "0.2.0"
globset = "0.4.16"
gstreamer = { version = "0.23.5", optional = true }
gstreamer-app = { version = "0.23.5", optional = true }
iced = { version = "0.14.0", features = ["advanced", "advanced-shaping", "crisp", "image", "lazy", "svg", "tiny-skia", "tokio", "wayland", "wgpu", "x11"], default-features = false }
iced_moving_picture = "0.2.0"
iced_video_player = { version = "0.6.0", optional = true }
image = { version = "0.25.6", features = ["ico"], default-features = false }
infer = "0.19.0"
intl-memoizer = "0.5.2"
itertools = "0.14.0"
log = "0.4.27"
mime_guess = "2.0.5"
png = "0.18.0"
opener = "0.7.2"
rand = "0.9.0"
regex = "1.11.1"
reqwest = { version = "0.12.15", features = ["blocking", "gzip", "rustls-tls"], default-features = false }
rfd = { version = "0.15.3", features = ["gtk3"], default-features = false }
rodio = { version = "0.20.1", features = ["symphonia-aac", "symphonia-aiff", "symphonia-alac", "symphonia-flac", "symphonia-isomp4", "symphonia-mp3", "symphonia-vorbis", "symphonia-wav"], default-features = false, optional = true }
schemars = { version = "1.2.1", features = ["chrono04"] }
semver = { version = "1.0.26", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_yaml = "0.8.26"
tokio = { version = "1.44.1", features = ["macros", "time"] }
tree_magic_mini = "3.1.6"
typed-path = "0.10.0"
unic-langid = "0.9.5"
url = "2.5.4"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.61.1", features = ["Win32_System_Console", "Win32_System_Threading"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[target.'cfg(target_os = "macos")'.build-dependencies]
system-deps = "7.0.3"
[dev-dependencies]
pretty_assertions = "1.4.1"
test-case = "3.3.1"
velcro = "0.5.4"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = "thin"
strip = true
[package.metadata.binstall]
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-win64{ archive-suffix }"
[package.metadata.binstall.overrides.i686-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-win32{ archive-suffix }"
[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-linux{ archive-suffix }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-mac{ archive-suffix }"
pkg-fmt = "tgz"
[package.metadata.system-deps]
"gstreamer-1.0" = "1.14"