-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (29 loc) · 968 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
[package]
name = "smmdb"
version = "0.4.0"
authors = ["Mario Reder <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1"
dirs = "3"
env_logger = "0.8"
futures = "0.3"
human-panic = "1"
iced = { git = "https://github.com/hecrj/iced.git", rev = "40d21d23659bdb9fc6a6166208adb351e188846b", features = [ "image", "svg", "tokio" ] }
iced_native = { git = "https://github.com/hecrj/iced.git", rev = "40d21d23659bdb9fc6a6166208adb351e188846b" }
iced_wgpu = { git = "https://github.com/hecrj/iced.git", rev = "40d21d23659bdb9fc6a6166208adb351e188846b" }
image = "0.23"
indexmap = "1"
lazy_static = "1"
nfd = { version = "0.3", package = "nfd2" }
reqwest = "0.11"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
serde_qs = "0.8"
smmdb-lib = { version = "2", git = "https://github.com/Tarnadas/smmdb-lib.git", features = [ "save" ], package = "smmdb" }
[profile]
[profile.dev]
opt-level = 1
[profile.release]
lto = "fat"
codegen-units = 1