A Rust version of JSONlite
A simple, self-contained, serverless, zero-configuration, json document store.
JSONlite sandboxes the current working directory just like SQLite. The data directory is named jsonlite.data
, and each json document is saved pretty printed as a uuid.
This is my first Rust code so it's far from being good code. I'll accept most PRs as long as they don't break API compatibility :).
git clone https://github.com/evuez/jsonlite.rs.git
cd jsonlite.rs
cargo build --release
ln -s $PWD/target/release/jsonlite /usr/local/bin/jsonlite
See original API.
Create issues here in GitHub (https://github.com/evuez/jsonlite.rs/issues).
For transparency and insight into the release cycle, and for striving to maintain backward compatibility, JSONlite will be maintained under the semantic versioning guidelines.
Releases will be numbered with the follow format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
- Breaking backward compatibility bumps the major (and resets the minor and patch)
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
- Bug fixes and misc changes bumps the patch
For more information on semantic versioning, visit http://semver.org/.