changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/dl/Cargo.toml

changeset 698: 96958d3eb5b0
parent: 0abefe2a369b
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 # from rustup
2 [package]
3 name = "dl"
4 version = "1.26.0"
5 edition = "2021"
6 license = "MIT OR Apache-2.0"
7 
8 [features]
9 
10 default = ["reqwest-backend", "reqwest-rustls-tls", "reqwest-default-tls"]
11 
12 curl-backend = ["curl"]
13 reqwest-backend = ["reqwest", "env_proxy"]
14 reqwest-default-tls = ["reqwest/default-tls"]
15 reqwest-rustls-tls = ["reqwest/rustls-tls-native-roots"]
16 
17 [dependencies]
18 anyhow = "1.0.82"
19 curl = { version = "0.4.46", optional = true }
20 env_proxy = { version = "0.4.1", optional = true }
21 once_cell = "1.19.0"
22 reqwest = { version = "0.11", default-features = false, features = ["blocking", "gzip", "socks"], optional = true }
23 thiserror = "1.0.59"
24 url = "2.5.0"
25 
26 [dev-dependencies]
27 http-body-util = "0.1.1"
28 hyper = { version = "1.3", default-features = false, features = ["server", "http1"] }
29 hyper-util = { version = "0.1.3", features = ["tokio"] }
30 tempfile = "3.10.1"
31 tokio = { version = "1.37.0", features = ["sync"] }