-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1.57 KB
/
Cargo.toml
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
[package]
name = "rclone-shuttle"
version = "0.1.4"
edition = "2021"
exclude = [
".flatpak-builder",
"flatpak-build",
"repo",
"meta",
]
description = "Upload your files to anywhere"
license = "GPL-3.0-or-later"
[package.metadata.winres]
ProductName = "Rclone Shuttle"
FileDescription = "File browser for Rclone"
OriginalFilename = "rclone-shuttle.exe"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/rclone-shuttle", dest = "/usr/bin/rclone-shuttle", mode = "0755" },
{ source = "meta/io.github.pieterdd.RcloneShuttle.desktop", dest = "/usr/share/applications/", mode = "0644" },
{ source = "meta/io.github.pieterdd.RcloneShuttle.png", dest = "/usr/share/icons/hicolor/512x512/apps/", mode = "0644" },
]
[package.metadata.generate-rpm.requires]
gtk4 = ">= 4.14.3"
rclone = ">= 1.66"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[dependencies]
chrono = "0.4.34"
inquire = "0.6.2"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
time = { version = "0.3.36", features = ["serde", "parsing", "formatting"] }
relm4 = { version = "0.9.0", features = ["macros", "libadwaita", "gnome_44", "adw", "gnome_45", "gnome_46"] }
relm4-icons = { version = "0.9.0", features = ["all"] }
uuid = { version = "1.7.0", features = ["v4"] }
dirs = "5.0.1"
open = "5.1.2"
size_format = "1.0.2"
confy = "0.6.1"
relm4-components = { version = "0.9.1", features = ["libadwaita"] }
regex = "1.10.5"
[dev-dependencies]
test-case = "3.3.1"