-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (47 loc) · 1.37 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
#======================#
#=== WORKSPACE INFO ===#
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2021"
#========================#
#=== PACKAGE SETTINGS ===#
[profile.dev]
debug = 0
strip = "debuginfo"
opt-level = 0
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = 3
panic = 'abort'
debug = 0
strip = true
lto = "thin"
codegen-units = 1
#===============================#
#=== DEPENDENCIES & FEATURES ===#
[workspace.dependencies]
# CRATES
util_datafiles = { path = "crates/files", version = "0.1.0" }
util_logs = { path = "crates/logs", version = "0.1.0" }
util_time = { path = "crates/time", version = "0.1.0" }
# STANDARD
chrono = { version = "*", features = ["serde"] }
# NETWORK
reqwest = { version = "*" }
# UTILITIES
thiserror = { version = "*" }
zip = { version = "*" }
# SERIALIZATION
serde = { version = "*", features = ["derive"] }
serde_json = { version = "*", features = ["arbitrary_precision"] }
bincode = { version = "*" }
toml = { version = "*" }
# TERMINAL LOGS
tracing = { version = "*" }
tracing-subscriber = { version = "*" }
indicatif = { version = "*" }
tracing-indicatif = { version = "*" }