forked from phiresky/timetrackrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (58 loc) · 1.78 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
[package]
name = "timetrackrs"
version = "0.1.0"
authors = ["phiresky <phireskyde+git@gmail.com>"]
edition = "2018"
license = "AGPL-3.0-or-later"
[dependencies]
anyhow = "1.0.58"
serde = { version = "1.0.140", features = ["derive"] }
serde_json = { version = "1.0.82", features = ["preserve_order"] }
sysinfo = "0.24.7"
chrono = { version = "0.4.19", features = ["serde"] }
dotenv = "0.15.0"
rand = "0.8.5"
lazy_static = "1.4.0"
uuid = { version = "1.1.2", features = ["serde", "v4"] }
regex = "1.6.0"
battery = "0.7.8"
os_info = "3.4.0"
enum-utils = "0.1.2"
num_enum = "0.5.7"
enum_dispatch = "0.3.8"
youtube_dl = "0.7.0"
directories-next = "2.0.0"
serde_regex = "1.1.0"
mediawiki = "0.2.7"
whoami = "1.2.1"
wmi = "0.11.0"
user-idle = "0.5.1"
env_logger = "0.9.0"
rustc-hash = "1.1.0"
reqwest = { version = "0.11.11", default-features = false, features = ["json", "blocking", "multipart"] }
erased-serde = "0.3.21"
log = "0.4.17"
hex = "0.4.3"
image = { version = "0.24.3", default-features = false, features = ["jpeg"] }
captis = "0.6.0"
graphql_client = {version = "*", git = "https://github.com/Selyatin/graphql-client", branch = "skip_none"}
serde_with = "2.0.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["std", "impl-default", "windef", "winuser", "processthreadsapi","handleapi", "psapi"] }
[target.'cfg(target_os="linux")'.dependencies]
x11rb = { version = "0.10.1", features = ["screensaver"] }
xcb = "1.1.1"
nl80211 = {git="https://github.com/Eonm/nl80211", branch="master"}
notify = "4.0.17"
openssl = "0.10.41"
[target.'cfg(target_os = "macos")'.dependencies]
objc = "0.2.7"
libc = "0.2.126"
core-graphics = "0.22.3"
core-foundation = "0.9.3"
accessibility-sys = "0.1.3"
[features]
openssl-vendored = ["openssl/vendored"]
[profile.release]
lto = "fat"
strip = "symbols"