-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.05 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
[package]
name = "qwicket"
version = "0.5.0"
edition = "2021"
description = "http query management tool for commandline lovers"
license = "GPL-3.0-or-later"
repository = "https://github.com/hardfau1t/qwicket"
homepage = "https://github.com/hardfau1t/qwicket"
documentation = "https://docs.rs/qwicket/latest/qwicket/"
[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
comfy-table = "7.1.3"
dirs = "5.0.1"
http = "1.1.0"
miette = { version = "7.2.0", features = ["fancy"] }
mime = "0.3.17"
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls", "http2", "charset", "multipart"] }
rmp-serde = "1.3.0"
rmpv = "1.3.0"
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.196", features = ["derive", "rc"] }
serde_json = "1.0.113"
subst = "0.3.3"
thiserror = "1.0.56"
tokio = { version = "1.41.1", features = ["full"] }
toml = "0.8.14"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
url = "2.5.2"
yansi = "1.0.1"
[dev-dependencies]
tracing-test = "0.2.5"
[profile.release]
codegen-units = 1
lto = true