Split util code into a separate package.

This commit is contained in:
Eric Huss 2021-03-19 21:15:26 -07:00
parent 610b07ffec
commit 669340333a
3 changed files with 13 additions and 0 deletions

View File

@ -22,6 +22,7 @@ path = "src/cargo/lib.rs"
atty = "0.2"
bytesize = "1.0"
cargo-platform = { path = "crates/cargo-platform", version = "0.1.1" }
cargo-util = { path = "crates/cargo-util", version = "0.1.0" }
crates-io = { path = "crates/crates-io", version = "0.33.0" }
crossbeam-utils = "0.8"
crypto-hash = "0.3.1"

View File

@ -0,0 +1,11 @@
[package]
name = "cargo-util"
version = "0.1.0"
authors = ["The Cargo Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-lang/cargo"
repository = "https://github.com/rust-lang/cargo"
description = "Miscellaneous support code used by Cargo."
[dependencies]

View File

@ -0,0 +1 @@
//! Miscellaneous support code used by Cargo.