Files
minne/json-stream-parser/Cargo.toml
T
Per Stark 1927149ce9 lint: inherit workspace clippy config in json-stream-parser and evaluations
Both crates were missing the [lints] workspace = true directive,
bypassing workspace clippy rules (unwrap_used, expect_used, etc.).
2026-05-26 20:21:25 +02:00

12 lines
165 B
TOML

[package]
name = "json-stream-parser"
version = "0.1.0"
edition = "2021"
license = "MIT"
[lints]
workspace = true
[dependencies]
serde_json = { workspace = true }