-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (33 loc) · 860 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
33
34
35
36
37
[package]
name = "baca"
description = "CLI client for the Jagiellonian University's BaCa online judge"
authors = ["Hubert Jaremko <[email protected]>"]
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["derive"] }
tracing = "0"
tracing-subscriber = "0"
reqwest = { version = "0", features = ["blocking", "json", "cookies", "multipart"] }
dyn-fmt = "0"
colored = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0"
zip = "0"
dialoguer = "0"
time = { version = "0", features = ["serde"] }
merge = "0"
regex = "1"
deunicode = "1"
[dev-dependencies]
mockall = "0"
assert_cmd = "2"
predicates = "2"
assert_fs = "1"
tempfile = "3"
[profile.release]
strip = true
lto = true
codegen-units = 1