mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 21:48:42 +00:00

* Add new dep maybe-owned v0.3.4 to binstalk-types with features serde * Re-export maybe_owned in binstalk-types * Optimize `CrateSource::url`: Use `MaybeOwned<'static, Url>` to avoid cloning in `CrateSource::cratesio_registry` * Optimize `Source`: Use `MaybeOwned<'static, Url>` to avoid cloning in `Source::cratesio_registry` and `impl From<&CrateSource> for Source`. * Optimize `Source`: Add lifetime `<'a>` to avoid cloning in `impl<'a> From<&'a CrateSource> for Source<'a>` * Optimize `CratesToml::append_to_path`: Avoid cloning caused by `CrateVersionSource::from` by manually `format!` name, version and source into string. * Add new dep beef v0.5.2 to binstalk-manifests with features impl_serde * Optimize `CratesToml::append_to_path`: Eliminate `metadata.bins.clone()` by using `Cow` * Replace dep toml_edit with toml v0.5.10 in binstalk-manifests to speed up compilation and reduce bloat. Previously we switch to toml_edit because it is unmaintained, but now with it moved into toml-rs/toml as a workspace, it is now under active maintenance again, thus we switch back to it. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
29 lines
979 B
TOML
29 lines
979 B
TOML
[package]
|
|
name = "binstalk-manifests"
|
|
description = "The binstall toolkit for manipulating with manifest"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/binstalk-manifests"
|
|
version = "0.1.1"
|
|
rust-version = "1.61.0"
|
|
authors = ["ryan <ryan@kurte.nz>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[dependencies]
|
|
beef = { version = "0.5.2", features = ["impl_serde"] }
|
|
binstalk-types = { version = "0.1.0", path = "../binstalk-types" }
|
|
compact_str = { version = "0.6.1", features = ["serde"] }
|
|
fs-lock = { version = "0.1.0", path = "../fs-lock" }
|
|
home = "0.5.4"
|
|
miette = "5.5.0"
|
|
semver = { version = "1.0.16", features = ["serde"] }
|
|
serde = { version = "1.0.151", features = ["derive"] }
|
|
serde-tuple-vec-map = "1.0.1"
|
|
serde_json = "1.0.91"
|
|
thiserror = "1.0.38"
|
|
toml = "0.5.10"
|
|
url = { version = "2.3.1", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
detect-targets = { version = "0.1.3", path = "../detect-targets" }
|
|
tempfile = "3.3.0"
|