Skip to content

Commit

Permalink
Basic rust test for hdlc low level
Browse files Browse the repository at this point in the history
  • Loading branch information
lexus2k committed Aug 18, 2024
1 parent c9102ce commit 1dfa2f6
Show file tree
Hide file tree
Showing 5 changed files with 600 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,8 @@

# Debug files
*.dSYM/


# Added by cargo

/target
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "tinyproto"
version = "1.0.0"
edition = "2021"

# [build]
# profiler = true

[lib]
name = "tinyproto"
path = "src/lib.rs"
Expand Down
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
pub mod proto {
pub mod crc;
pub mod hdlc {
pub mod low_level {
pub mod hdlc;
}
pub mod low_level;
}
}

Expand Down
Loading

0 comments on commit 1dfa2f6

Please sign in to comment.