mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 13:38:43 +00:00

* Refactor: Move `Strategy` to `binstalk-types` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add serialisation test for `Strategy` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add support to disable strategies via crate `Cargo.toml` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add e2e-test Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Fix `Cargo.toml` disabled strategy checking for compile strategy Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Optimize `resolve_inner`: Cache meta override Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add compile-time length checking for `Strategy` Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * More optimization Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Fix order of override: cli options alwayus takes precedence Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Add missing manifest for e2e-test Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
23 lines
740 B
TOML
23 lines
740 B
TOML
[package]
|
|
name = "binstalk-types"
|
|
description = "The binstall toolkit that contains basic types for binstalk crates"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/binstalk-types"
|
|
version = "0.7.0"
|
|
rust-version = "1.61.0"
|
|
authors = ["ryan <ryan@kurte.nz>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
[dependencies]
|
|
compact_str = { version = "0.8.0", features = ["serde"] }
|
|
maybe-owned = { version = "0.3.4", features = ["serde"] }
|
|
once_cell = "1.18.0"
|
|
semver = { version = "1.0.17", features = ["serde"] }
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
strum = "0.26.1"
|
|
strum_macros = "0.26.1"
|
|
url = { version = "2.3.1", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|