Addresses CVE regarding IterMut violating Stacked Borrows in lru crate. Changes: - Update lru v0.16.2 -> v0.16.3 (patched version) - Remove vulnerable lru v0.12.5 and v0.13.0 - Update ratatui v0.29 -> v0.30 in marathonctl - Remove unnecessary ratatui/crossterm from app crate - Update pkarr v5.0.0 -> v5.0.2 - Bump libmarathon v0.1.1 -> v0.1.2 - Bump marathonctl dependency on libmarathon to 0.1.2 All lru versions now use the patched 0.16.3 release. Fixes: https://github.com/r3t-studios/marathon/security/dependabot/1 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
28 lines
673 B
TOML
28 lines
673 B
TOML
[package]
|
|
name = "libmarathon-macros"
|
|
version = "0.1.2"
|
|
edition.workspace = true
|
|
description = "Procedural macros for the Marathon game engine"
|
|
license = "MIT"
|
|
repository = "https://github.com/r3t-studios/marathon"
|
|
homepage = "https://github.com/r3t-studios/marathon"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
inventory = { workspace = true }
|
|
bytes = "1.0"
|
|
bevy_macro_utils = "0.17.2"
|
|
|
|
[dev-dependencies]
|
|
libmarathon = { path = "../libmarathon" }
|
|
bevy = { workspace = true }
|
|
serde = { workspace = true }
|
|
rkyv = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|