mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 22:50:19 +00:00
515c8a3f50
**Why?** The `value_parser` `clap` attribute was added in [version 3.2.0][0]. With the current version of `3.1.12` users can get errors like: ``` error: unexpected attribute: value_parser --> tools/spancmp/src/main.rs:18:25 | 18 | #[clap(short, long, value_parser, default_value_t = 0.0)] | ^^^^^^^^^^^^ ``` See https://github.com/bevyengine/bevy/pull/4944#issuecomment-1157704785 for more details. [0]: https://github.com/clap-rs/clap/blob/master/CHANGELOG.md#320---2022-06-13
16 lines
412 B
TOML
16 lines
412 B
TOML
[package]
|
|
name = "spancmp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "compare spans for Bevy"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
clap = { version = "3.2", features = ["derive"] }
|
|
regex = "1.5"
|
|
termcolor = "1.1"
|
|
bevy_reflect = { path = "../../crates/bevy_reflect", version = "0.8.0-dev" }
|
|
lazy_static = "1.4"
|