-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 915 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 915 Bytes
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
[package]
name = "nomnom-app"
description = "YT-DLP GUI Wrapper, but it eats URLs and spits out videos. simple."
version = "0.1.9"
edition = "2024"
authors = ["SeyedAli <seyed.ali.devl@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/seyallius/nomnom"
repository = "https://github.com/seyallius/nomnom"
keywords = ["yt-dlp", "youtube", "yt-dlp-gui", "gui", "downloader"]
categories = ["gui", "multimedia"]
rust-version = "1.88.0"
[dependencies]
dioxus = { version = "0.7.3", features = ["desktop"] }
dioxus-desktop = "0.7.3"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rfd = "0.17.2" # native file dialog
dirs = "6" # platform dirs (Downloads, etc.)
chrono = "0.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[[bin]]
name = "nomnom"
path = "src/main.rs"