-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 708 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (24 loc) · 708 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
[package]
name = "httpget"
version = "0.1.0"
edition = "2021"
authors = ["Natalia Maximo <iam@natalia.dev>"]
description = "A small, simple client to make http get requests and return a 0 status code if they succeed, 1 status code otherwise"
readme = "README.md"
repository = "https://github.com/taliamax/httpget"
license = "MIT"
keywords = ["http", "client", "minimal"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
minreq = "2.13.0"
[features]
default = []
tls = ["minreq/https-rustls"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[package.metadata.deb.variants.tls]
features = ["tls"]