cosmic-player/Cargo.toml

52 lines
1.2 KiB
TOML
Raw Normal View History

2024-01-23 21:55:34 -07:00
[package]
name = "cosmic-player"
version = "0.1.0"
edition = "2021"
[dependencies]
gstreamer-tag = "0.23"
2024-01-24 14:31:39 -07:00
lazy_static = "1"
serde = { version = "1", features = ["serde_derive"] }
tokio = "1"
url = "2"
2024-01-24 14:31:39 -07:00
# Internationalization
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6"
rust-embed = "6"
# Logging
env_logger = "0.10"
log = "0.4"
[dependencies.iced_video_player]
git = "https://github.com/jackpot51/iced_video_player.git"
2024-12-03 15:27:56 -07:00
branch = "prev-cosmic"
2024-10-09 11:15:04 -06:00
default-features = false
2024-01-24 14:31:39 -07:00
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic.git"
2024-12-03 15:27:56 -07:00
branch = "prev-master"
2024-01-24 14:31:39 -07:00
default-features = false
features = ["tokio", "winit"]
2024-02-09 09:15:29 -07:00
[dependencies.smol_str]
version = "0.2.1"
features = ["serde"]
2024-01-24 14:31:39 -07:00
[features]
default = ["xdg-portal", "wgpu"]
xdg-portal = ["libcosmic/xdg-portal"]
2024-10-09 11:15:04 -06:00
wgpu = ["iced_video_player/wgpu", "libcosmic/wgpu"]
2024-01-24 14:31:39 -07:00
[profile.release-with-debug]
inherits = "release"
debug = true
2024-10-07 10:38:31 -06:00
2024-10-07 13:48:53 -06:00
# [patch.'https://github.com/jackpot51/iced_video_player']
# iced_video_player = { path = "../../iced_video_player" }
2024-10-07 10:38:31 -06:00
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }
2024-10-07 13:48:53 -06:00