Cargo.toml (406B)
1 [package] 2 name = "robocop" 3 version = "1.0.0" 4 edition = "2024" 5 # Edition 2024 needs 1.85, and nothing here needs more: keep it that way so the 6 # build works with a distribution's stock cargo/rustc (Debian trixie: 1.85) 7 # rather than requiring a rustup-managed toolchain. In particular, avoid 8 # let-chains (`if let ... && let ...`), which are 1.88+. 9 rust-version = "1.85" 10 11 [dependencies] 12 serde_json = "1.0"