mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 21:48:42 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
* build(deps): bump the deps group with 5 updates Bumps the deps group with 5 updates: | Package | From | To | | --- | --- | --- | | [file-format](https://github.com/mmalecot/file-format) | `0.23.0` | `0.24.0` | | [miette](https://github.com/zkat/miette) | `5.10.0` | `7.0.0` | | [supports-color](https://github.com/zkat/supports-color) | `2.1.0` | `3.0.0` | | [simple-git](https://github.com/cargo-bins/simple-git) | `0.2.2` | `0.2.3` | | [toml_edit](https://github.com/toml-rs/toml) | `0.21.1` | `0.22.4` | Updates `file-format` from 0.23.0 to 0.24.0 - [Release notes](https://github.com/mmalecot/file-format/releases) - [Changelog](https://github.com/mmalecot/file-format/blob/main/CHANGELOG.md) - [Commits](https://github.com/mmalecot/file-format/compare/v0.23.0...v0.24.0) Updates `miette` from 5.10.0 to 7.0.0 - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/compare/miette-derive-v5.10.0...miette-derive-v7.0.0) Updates `supports-color` from 2.1.0 to 3.0.0 - [Release notes](https://github.com/zkat/supports-color/releases) - [Changelog](https://github.com/zkat/supports-color/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/supports-color/compare/v2.1.0...v3.0.0) Updates `simple-git` from 0.2.2 to 0.2.3 - [Commits](https://github.com/cargo-bins/simple-git/commits) Updates `toml_edit` from 0.21.1 to 0.22.4 - [Commits](https://github.com/toml-rs/toml/compare/v0.21.1...v0.22.4) --- updated-dependencies: - dependency-name: file-format dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: miette dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: supports-color dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: simple-git dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com> * Fix compilation of `leon` when feature `cli` is enabled Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jiahao XU <Jiahao_XU@outlook.com>
21 lines
659 B
TOML
21 lines
659 B
TOML
[package]
|
|
name = "leon"
|
|
description = "Dead-simple string templating"
|
|
repository = "https://github.com/cargo-bins/cargo-binstall"
|
|
documentation = "https://docs.rs/leon"
|
|
version = "2.0.1"
|
|
rust-version = "1.61.0"
|
|
authors = ["Félix Saparelli <felix@passcod.name>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0 OR MIT"
|
|
exclude = ["fuzz", "benches"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.8", features = ["derive"], optional = true }
|
|
miette = { version = "7.0.0", default-features = false, features = ["derive"], optional = true }
|
|
thiserror = "1.0.52"
|
|
|
|
[features]
|
|
default = ["miette"]
|
|
cli = ["dep:clap", "miette", "miette?/fancy-no-backtrace"]
|
|
miette = ["dep:miette"]
|