Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ nalgebra = { version = "0.33", default-features = false, features = ["std"] }
# hardware (the detector was blind, silently). The `GNSS` bundle enables the
# position/velocity sentence set we actually decode (GGA, RMC, VTG, GSA, GSV,
# GLL, GNS, GST, ...). Verified against nmea-0.7.0 [features] table.
nmea = { version = "0.7", default-features = false, features = ["std", "GNSS"] }
nmea = { version = "0.8", default-features = false, features = ["std", "GNSS"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] }
Expand Down
23 changes: 8 additions & 15 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tokio-util = { version = "0.7", features = ["codec"] }
# Same feature set as the parent crate: the `GNSS` bundle is what makes
# GGA/RMC/VTG decodable at all (audit I-01). Fuzzing with the default features
# would exercise a parser that rejects every real sentence.
nmea = { version = "0.7", default-features = false, features = ["std", "GNSS"] }
nmea = { version = "0.8", default-features = false, features = ["std", "GNSS"] }

[dependencies.flyingsquirrel]
path = ".."
Expand Down
Loading