-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 955 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "bourso-cli"
version = "0.5.3"
edition = "2021"
repository = "https://github.com/azerpas/bourso-api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bourso_api = { path = "./src/bourso_api" }
tokio = { version = "1.33.0", features = ["full"] }
anyhow = { version = "1.0.75" }
clap = { version = "4.4.6" }
rpassword = { version = "7.2.0" }
directories = { version = "5.0.1" }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = { version = "1.0.107" }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.20", features = ["fmt", "env-filter", "json"] }
futures-util = { version = "0.3.31" }
qrcode = { version = "0.14.1" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }