-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (59 loc) · 1.43 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
[package]
name = "eris"
version = "1.0.0"
authors = ["Teemu <temeez.dev@gmail.com>"]
edition = "2021"
description = "Webnovel tracker"
build = "src/build.rs"
repository = "https://github.com/Temeez/eris/"
[profile.release]
lto = true
[target.'cfg(windows)'.dependencies]
winreg = "0.10"
[build-dependencies]
winres = "0.1"
[dependencies]
window_titles = { git = "https://github.com/Temeez/window_titles.git", rev = "c2bed399eaddd92da3127aec1457c54e919865f6" }
const_format = "0.2.22"
dirs = "4.0.0"
parking_lot = "0.12.1"
clokwerk = "0.3.4"
sanitize-filename = "0.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
cascade = "1.0.0"
regex = "1.5"
rust-embed = "6.2.0"
epub = { git = "https://github.com/danigm/epub-rs" }
serde_json = "1.0"
lazy_static = "1.4.0"
ngrammatic = "0.4.0"
# Encode/Decode
bincode = "1.3.2"
serde_derive = "1.0.124"
serde = { version = "1.0", features = ["derive"] }
# Web
ureq = { version = "2.3.0", features = ["json"] }
select = "0.6.0-alpha.1"
url = "2.2.2"
slug = "0.1.4"
webbrowser = "0.7.1"
# Errors
thiserror = "1.0"
anyhow = "1.0"
# Logging
log = "0.4"
fern = "0.6"
# GTK (gui)
gdk = "*"
gdk-pixbuf = "*"
gdk-sys = "*"
gio = { version = "*" }
gio-sys = "*"
glib = "*"
gtk = { version = "0.15", features = ["v3_24"] }
# i18n
once_cell = "1.8.0"
i18n-embed = { version = "0.13.1", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.1"
[package.metadata.winres]
OriginalFilename = "ERIS.EXE"