Initial Commit

+ Basic implementation working with just unsigned ints
+ Can fetch data from arbitrary bit positions in a byte string
+ TOML config implementation for describing data
+ Simple CLI
This commit is contained in:
2021-09-11 12:21:34 -06:00
commit b85ba31f91
8 changed files with 591 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
[package]
name = "formaty"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3.23"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5.8"
byteorder = "1.4.3"