-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 897 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
25
26
27
28
29
30
31
32
[package]
name = "rucl"
authors = ["Pau de la Cuesta"]
description = "`rucl` is a tool inspired in `curl` written in Rust and built for educational purposes."
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rucl"
path = "src/lib/mod.rs"
[dependencies]
clap = { version = "4.4.7", features = ["derive"] }
clap-verbosity-flag = "2.1.0"
url = "2.4.1"
hickory-resolver = { version = "*", features = ["tokio-runtime"] }
tokio = { version = "1.21", features = ["full"] }
thiserror = "1.0.50"
tokio-native-tls = "0.3.1"
dotenv = "0.15.0"
colored = "2.0.4"
env_logger = "0.10.0"
log = "0.4.20"
ctrlc = "3.4.1"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1
panic = "abort"