Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjakstas committed Mar 2, 2023
0 parents commit 92cb6df
Show file tree
Hide file tree
Showing 65 changed files with 15,794 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[target.arm-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-gcc"
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/target
.idea
.vscode
perf.data*
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

All visible changes will be documented here. This project adheres to Semantic Versioning.

## [Unreleased]

- Support for c in a library
- Gracefull handling of socket/sleeps/network delays
- Pass in sleep function

## [0.1.0] - 2023-02-15

### Added

- Initial tftp binary and library realese
Loading

0 comments on commit 92cb6df

Please sign in to comment.