improve README
This commit is contained in:
parent
955fd5b0ae
commit
cb9ae923f5
18
README.md
18
README.md
|
@ -3,7 +3,19 @@
|
||||||
bip is a library which provides a framework for parsing plain bip text and also provides
|
bip is a library which provides a framework for parsing plain bip text and also provides
|
||||||
faculties for serialization and deserialization via serde.
|
faculties for serialization and deserialization via serde.
|
||||||
|
|
||||||
bip is a data format that is converted from a descriptive text representation to a binary
|
```
|
||||||
representation with memory and run-time efficiency in mind. This repository consists of two
|
Time = data hh mm ss;
|
||||||
parts (bip and bipc).
|
|
||||||
|
|
||||||
|
ctime = {
|
||||||
|
fmt = Time 8 40 30;
|
||||||
|
desc = "current time";
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## bipc
|
||||||
|
|
||||||
|
Tool for converting plain-text bip data to its binary representation.
|
||||||
|
|
||||||
|
```
|
||||||
|
bipc [-o outfile] <path>
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue