forked from ArturKovacs/emulsion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (48 loc) · 1.24 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
[package]
name = "emulsion"
version = "2.1.0"
description = "A fast and minimalistic image viewer"
repository = "https://github.com/ArturKovacs/emulsion"
authors = ["Artur Barnabas <[email protected]>"]
license = "MIT"
readme = "README.md"
edition = "2018"
build = "build.rs"
[workspace]
members = [
"subcrates/gelatin",
]
[profile.dev.package."*"]
opt-level = 1
[profile.dev.build-override]
opt-level = 1
[profile.release]
lto = true
[features]
default = []
networking = ["ureq"]
[package.metadata.bundle]
name = "Emulsion"
identifier = "io.github.arturkovacs.emulsion"
icon = ["resource_dev/emulsion.png"]
resources = ["LICENSE.txt"]
short_description = "A lightweight and minimalistic image viewer"
copyright = "Copyright (c) 2020 The Emulsion Contributors"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[dependencies]
gelatin = { path = "./subcrates/gelatin" }
#gelatin = "0.3"
ureq = { version = "1", features = ["json"], optional = true }
lazy_static = "1.4.0"
directories-next = "1.0"
open = "1.4.0"
sys-info = "=0.5.8"
error-chain = "0.12"
backtrace = "0.3"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
rand = "0.7"
alphanumeric-sort = "1.0"
trash = "1.0"
clap = { version = "2.33", default-features = false }