-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (33 loc) · 1.04 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
[package]
name = "screen-grabber"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eframe = { version = "0.25.0", features = ["persistence", "wgpu"] }
egui = "0.25.0"
egui_extras = { version = "0.25.0", features = ["all_loaders"] }
egui-modal = "0.3.2"
lazy_static = "1.4.0"
screenshots = "0.8.6"
serde = { version = "1.0.195", features = ["derive"] }
confy = { version = "0.6.0", features = ["yaml_conf"], default-features = false }
global-hotkey = "0.4.1"
keyboard-types = "0.7.0"
skia-safe = { version = "0.69.0", features = ["textlayout"] }
image = "0.24.7"
chrono = "0.4.31"
rfd = { version = "0.12.1", default-features = false, features = ["xdg-portal"] }
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
egui-keybind = {version = "0.2.5", features = ["serde"]}
arboard = "3.3.0"
rand = "0.8.5"
regex = "1.10.2"
dirs = "5.0.1"
[profile.release]
strip = true
opt-level = 3
overflow-checks = false
debug = false
lto = true
panic = "abort"