ruffle/tests/input-format/Cargo.toml

17 lines
342 B
TOML
Raw Normal View History

[package]
name = "ruffle_input_format"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[lints]
workspace = true
[dependencies]
2024-04-04 12:00:14 +00:00
serde = { workspace = true, features = ["derive"] }
build(deps): bump the cargo-minor group across 1 directory with 7 updates Bumps the cargo-minor group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.7` | `4.5.8` | | [bitflags](https://github.com/bitflags/bitflags) | `2.5.0` | `2.6.0` | | [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` | | [serde_json](https://github.com/serde-rs/json) | `1.0.117` | `1.0.120` | | [num-bigint](https://github.com/rust-num/num-bigint) | `0.4.5` | `0.4.6` | | [id3](https://github.com/polyfloyd/rust-id3) | `1.13.1` | `1.14.0` | | [either](https://github.com/rayon-rs/either) | `1.12.0` | `1.13.0` | Updates `clap` from 4.5.7 to 4.5.8 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.7...v4.5.8) Updates `bitflags` from 2.5.0 to 2.6.0 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/2.5.0...2.6.0) Updates `log` from 0.4.21 to 0.4.22 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.21...0.4.22) Updates `serde_json` from 1.0.117 to 1.0.120 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.117...v1.0.120) Updates `num-bigint` from 0.4.5 to 0.4.6 - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.4.5...num-bigint-0.4.6) Updates `id3` from 1.13.1 to 1.14.0 - [Changelog](https://github.com/polyfloyd/rust-id3/blob/main/CHANGELOG.md) - [Commits](https://github.com/polyfloyd/rust-id3/compare/v1.13.1...v1.14.0) Updates `either` from 1.12.0 to 1.13.0 - [Commits](https://github.com/rayon-rs/either/compare/1.12.0...1.13.0) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bitflags dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: num-bigint dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: id3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: either dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-01 22:51:23 +00:00
serde_json = "1.0.120"
bitflags = { workspace = true }