-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (21 loc) · 825 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
[package]
name = "kiho-worktime"
version = "1.1.2"
# https://doc.rust-lang.org/edition-guide/introduction.html
edition = "2021"
# https://github.com/johnthagen/min-sized-rust
[profile.release]
strip = true # Automatically strip symbols from the binary. (14.8 -> 4.1 MiB)
opt-level = "z" # Optimize for size. ( 4.1 -> 3.6 MiB)
lto = true # ( 3.6 -> 2.2 MiB)
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.26"
clap = { version = "4.3.22", features = ["derive"] }
confy = "0.6.1"
const_format = "0.2.33"
once_cell = "1.18.0"
reqwest = { version = "0.12.7", features = ["blocking", "json", "gzip"] }
serde = "1.0.183"
serde_derive = "1.0.183"
serde_json = "1.0.105"