-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
90 lines (84 loc) · 2.07 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
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
[package]
name = "ascella"
version = "0.12.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
[dependencies]
eframe = "0.28.1"
egui_extras = "0"
egui_file = "0"
egui-notify = { version = "0.15.0" }
home = "0"
bytes = "1"
color-hex = "0"
config = "0"
parking_lot = { version = "0", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", default-features = false, features = [
"rt",
"rt-multi-thread",
"parking_lot",
"sync",
"macros",
"process",
"fs",
] }
chrono = "0"
tokio-util = { version = "0.7.8", features = ["codec"] }
tracing = "0"
toml = "0"
anyhow = "1"
toml_edit = { version = "0.22.20", features = ["serde"] }
tracing-subscriber = { version = "0.3.17", features = [
"parking_lot",
"once_cell",
"tracing",
"env-filter",
] }
clap = { version = "4", features = ["derive", "env", "cargo"] }
oxipng = { version = "9.1.2", default-features = false, features = [
"parallel",
] }
notify-rust = { version = "4.11.1" }
egui_tracing_rs = "0.3.1"
sha2 = "0.10.8"
hmac = "0.12.1"
base64 = "0.22.1"
hex = "0.4.3"
aws-sign-v4 = "0.3.0"
aws-sdk-s3 = "1.43.0"
[target.'cfg(not(linux))'.dependencies]
clipboard2 = "0"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/ascella", dest = "/usr/bin/ascella", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/ascella/LICENSE", doc = true, mode = "0644" },
{ source = "README.md", dest = "/usr/share/doc/ascella/README.md", doc = true, mode = "0644" },
]
[package.metadata.appimage]
[package.metadata.deb]
license-file = ["LICENSE", "4"]
extended-description = """Ascella desktop app"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
[
"target/release/ascella",
"usr/bin/ascella",
"755",
],
[
"LICENSE",
"usr/share/doc/ascella/LICENSE",
"644",
],
[
"README.md",
"usr/share/doc/ascella/README.md",
"644",
],
]