mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

In response to RFC 3231 [^1], our registry client need to return headers to caller, so that the caller (cargo binary) can continue parsing challenge headers. [^1]: https://rust-lang.github.io/rfcs/3231-cargo-asymmetric-tokens.html#the-authentication-process
22 lines
448 B
TOML
22 lines
448 B
TOML
[package]
|
|
name = "crates-io"
|
|
version = "0.38.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository = "https://github.com/rust-lang/cargo"
|
|
description = """
|
|
Helpers for interacting with crates.io
|
|
"""
|
|
|
|
[lib]
|
|
name = "crates_io"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
curl.workspace = true
|
|
percent-encoding.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
url.workspace = true
|