mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
7db9b08b5f
# Objective Alternative to #6150 Dependabot's PR doesn't seem to break anything, but there are some deprecations that we might as well fix up. ## Solution https://github.com/clap-rs/clap/blob/master/CHANGELOG.md#migrating Update clap in `build-wasm-example` and `span-cmp`. Other tools don't use clap. Remove references to `value_parser`. It's the default now. Change `#[clap()]` to `#[arg()]`. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
16 lines
408 B
TOML
16 lines
408 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 = "4.0", features = ["derive"] }
|
|
regex = "1.5"
|
|
termcolor = "1.1"
|
|
bevy_utils = { path = "../../crates/bevy_utils", version = "0.9.0-dev" }
|
|
lazy_static = "1.4"
|