Writing refactored to be more correct. Users will have to create a TableWriter and specify fields (type, length, etc) they want to write in the file (We no longer guesses field types, length).
use chrono to set the header's date
Create two traits: ReabableDbaseRecord & WritableDbaseRecord to allow user to read & write
from & into their own defined structs
Add optional serde feature to allow Serializing & Deserializing (struct that implement Deserialize get a
ReadbleDBaseRecord impl & struct that implements Serialize gets et WritableDbaseRecord impl)
Writing refactored to be more correct. Users will have to create a TableWriter and specify fields (type, length, etc) they want to write in the file (We no longer guesses field types, length).
use chrono to set the header's date
Create two traits: ReabableDbaseRecord & WritableDbaseRecord to allow user to read & write from & into their own defined structs
(Closes #5 )
TODO before merging: