Skip to content

Commit

Permalink
Merge pull request #322 from rsadsb/update-deku-0.18
Browse files Browse the repository at this point in the history
Update to deku 0.18.0
  • Loading branch information
wcampbell0x2a committed Sep 10, 2024
2 parents f5fcf22 + 4f9e965 commit 58716e3
Show file tree
Hide file tree
Showing 13 changed files with 416 additions and 328 deletions.
172 changes: 87 additions & 85 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions apps/src/1090/1090.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use std::io::{BufRead, BufReader};
use std::net::TcpStream;

use adsb_deku::deku::DekuContainerRead;
use adsb_deku::Frame;
use clap::Parser;

Expand Down Expand Up @@ -58,8 +57,8 @@ fn main() {
}

// decode
match Frame::from_bytes((&bytes, 0)) {
Ok((_, frame)) => {
match Frame::from_bytes(&bytes) {
Ok(frame) => {
if options.debug {
println!("{frame:#?}");
}
Expand Down
Loading

0 comments on commit 58716e3

Please sign in to comment.