aboutsummaryrefslogtreecommitdiff
path: root/src/kvstore.rs
AgeCommit message (Collapse)Author
2021-11-09Separate the binary and libraryDaniel Schadt
This uses the workspace feature of cargo, with the benefit that 1) We can more cleanly group the binary (user facing) code from the library 2) We can have dependencies that apply to the binary only The first point could've been achieved without workspaces (Cargo supports both binaries and libraries in a crate), but the second point is what really makes this approach a lot better.
2021-11-06Initial commitDaniel Schadt
This is the inital commit of a somewhat working version.