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 with 9 updates Bumps the cargo-minor group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.9` | `4.5.11` | | [tokio](https://github.com/tokio-rs/tokio) | `1.38.1` | `1.39.2` | | [quick-xml](https://github.com/tafia/quick-xml) | `0.36.0` | `0.36.1` | | [serde_json](https://github.com/serde-rs/json) | `1.0.120` | `1.0.121` | | [enumset](https://github.com/Lymia/enumset) | `1.1.4` | `1.1.5` | | [toml_edit](https://github.com/toml-rs/toml) | `0.22.16` | `0.22.17` | | [gilrs](https://gitlab.com/gilrs-project/gilrs) | `0.10.8` | `0.10.9` | | [env_logger](https://github.com/rust-cli/env_logger) | `0.11.3` | `0.11.5` | | [toml](https://github.com/toml-rs/toml) | `0.8.15` | `0.8.16` | Updates `clap` from 4.5.9 to 4.5.11 - [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.9...clap_complete-v4.5.11) Updates `tokio` from 1.38.1 to 1.39.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.38.1...tokio-1.39.2) Updates `quick-xml` from 0.36.0 to 0.36.1 - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.36.0...v0.36.1) Updates `serde_json` from 1.0.120 to 1.0.121 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.120...v1.0.121) Updates `enumset` from 1.1.4 to 1.1.5 - [Changelog](https://github.com/Lymia/enumset/blob/main/RELEASES.md) - [Commits](https://github.com/Lymia/enumset/compare/v1.1.4...v1.1.5) Updates `toml_edit` from 0.22.16 to 0.22.17 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17) Updates `gilrs` from 0.10.8 to 0.10.9 - [Commits](https://gitlab.com/gilrs-project/gilrs/compare/v0.10.8...v0.10.9) Updates `env_logger` from 0.11.3 to 0.11.5 - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.5) Updates `toml` from 0.8.15 to 0.8.16 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: quick-xml 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: enumset dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: gilrs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: env_logger dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2024-07-29 13:43:02 +00:00
serde_json = "1.0.121"
bitflags = { workspace = true }