-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (39 loc) · 1017 Bytes
/
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
cargo-features = ["trim-paths"]
[package]
name = "cowbump"
version = "0.3.0-dev"
authors = ["Mika Attila <[email protected]>"]
edition = "2021"
[dependencies]
walkdir = "2.5.0"
serde = "1.0.200"
serde_derive = "1.0.200"
rmp-serde = "1.3.0"
image = "0.25.1"
arboard = "3.4.0"
thiserror = "1.0.59"
anyhow = "1.0.82"
fnv = "1.0.7"
directories = "5.0.1"
open = "5.1.2"
zstd = "0.13.1"
zip = { version = "2.1.3", default-features = false }
egui-sfml = "0.7.0"
rand = "0.8.5"
egui-file-dialog = "0.7.0"
parking_lot = "0.12"
egui_flex = "0.1.1"
egui_colors = { git = "https://github.com/crumblingstatue/egui_colors.git", branch = "less-ctx-and-theme-refactor" }
constcat = "0.5.0"
[dependencies.recently_used_list]
git = "https://github.com/crumblingstatue/recently_used_list.git"
[dependencies.tagfilter-lang]
git = "https://github.com/crumblingstatue/tagfilter-lang.git"
[profile.release]
codegen-units = 1
panic = "abort"
lto = "thin"
[profile.dev]
trim-paths = "all"
[profile.dev.package."*"]
opt-level = 2