-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1011 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
cargo-features = ["edition2024"]
[package]
name = "buklo"
version = "0.1.14"
description = "Buklo is a simple CLI HTTP client"
keywords = ["cli", "http", "https"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ghishadow/buklo"
documentation = "https://docs.rs/crate/buklo"
edition = "2024"
[badges]
maintenance = { status = "actively-developed" }
[lints.rust]
unsafe_code = "forbid"
[dependencies]
argh = "0.1"
ureq = { version = "2.10", default-features = false, features = [
"gzip",
"json",
"socks-proxy",
"native-certs",
"native-tls",
] }
update-informer = "1.1"
owo-colors = "4.1"
url = "2.5"
tracing = "0.1"
tokio = { version = "1", features = ["tracing", "macros", "rt-multi-thread"] }
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = "debuginfo"
panic = "abort"