mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
ab0f63ecdf
The sha-1 and md-5 packages contain crates named sha1 and md5, respectively. This discrepancy makes it somewhat more challenging to automate detection of unused crates. Explicitly rename the packages to the names of the crates they contain, to simplify such detection.
23 lines
565 B
TOML
23 lines
565 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_span"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_index = { path = "../rustc_index" }
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
scoped-tls = "1.0"
|
|
unicode-width = "0.1.4"
|
|
cfg-if = "0.1.2"
|
|
tracing = "0.1"
|
|
sha1 = { package = "sha-1", version = "0.9" }
|
|
sha2 = "0.9"
|
|
md5 = { package = "md-5", version = "0.9" }
|