mirror of
https://github.com/maciejpedzich/f1-game-packet-parser.git
synced 2025-05-16 07:15:32 +02:00
Bumps the minor-updates group with 4 updates: [binrw](https://github.com/jam1garner/binrw), [binrw_derive](https://github.com/jam1garner/binrw), [owo-colors](https://github.com/owo-colors/owo-colors) and [syn](https://github.com/dtolnay/syn). Updates `binrw` from 0.14.1 to 0.15.0 - [Release notes](https://github.com/jam1garner/binrw/releases) - [Commits](https://github.com/jam1garner/binrw/compare/v0.14.1...v0.15.0) Updates `binrw_derive` from 0.14.1 to 0.15.0 - [Release notes](https://github.com/jam1garner/binrw/releases) - [Commits](https://github.com/jam1garner/binrw/compare/v0.14.1...v0.15.0) Updates `owo-colors` from 3.5.0 to 4.2.0 - [Release notes](https://github.com/owo-colors/owo-colors/releases) - [Changelog](https://github.com/owo-colors/owo-colors/blob/main/CHANGELOG.md) - [Commits](https://github.com/owo-colors/owo-colors/compare/v3.5.0...v4.2.0) Updates `syn` from 1.0.109 to 2.0.98 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/1.0.109...2.0.98) --- updated-dependencies: - dependency-name: binrw dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: binrw_derive dependency-version: 0.15.0 dependency-type: indirect update-type: version-update:semver-minor dependency-group: minor-updates - dependency-name: owo-colors dependency-version: 4.2.0 dependency-type: indirect update-type: version-update:semver-major dependency-group: minor-updates - dependency-name: syn dependency-version: 2.0.98 dependency-type: indirect update-type: version-update:semver-major dependency-group: minor-updates ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
732 B
TOML
24 lines
732 B
TOML
[package]
|
|
name = "f1-game-packet-parser"
|
|
description = "Convert binary data from F1 24, F1 23, and F1 22 UDP telemetry into organised structs."
|
|
version = "1.0.3"
|
|
edition = "2021"
|
|
rust-version = "1.78"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/maciejpedzich/f1-game-packet-parser"
|
|
repository = "https://github.com/maciejpedzich/f1-game-packet-parser"
|
|
keywords = ["f1", "f1-telemetry", "f1-udp-parser", "f1-udp-telemetry", "f1-telemetry-parser"]
|
|
categories = ["parser-implementations"]
|
|
authors = ["Maciej Pędzich <contact@maciejpedzi.ch>"]
|
|
license = "MIT"
|
|
exclude = [
|
|
".github/*",
|
|
".idea/*",
|
|
"tests/*"
|
|
]
|
|
|
|
[dependencies]
|
|
binrw = "0.15.0"
|
|
bitflags = "2.9.0"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|