dependabot[bot] ed54f36f9a
chore(deps): bump the patch-updates group with 3 updates
Bumps the patch-updates group with 3 updates: [serde](https://github.com/serde-rs/serde), [quote](https://github.com/dtolnay/quote) and [serde_derive](https://github.com/serde-rs/serde).


Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.218...v1.0.219)

Updates `quote` from 1.0.39 to 1.0.40
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](https://github.com/dtolnay/quote/compare/1.0.39...1.0.40)

Updates `serde_derive` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.218...v1.0.219)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-14 11:50:05 +00:00

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.2"
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.14.1"
bitflags = "2.9.0"
serde = { version = "1.0.219", features = ["derive"] }