├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── file_store.rs ├── json_store.rs ├── lib.rs └── memory_store.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | *.swp 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/README.md -------------------------------------------------------------------------------- /src/file_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/src/file_store.rs -------------------------------------------------------------------------------- /src/json_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/src/json_store.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/memory_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flosse/rust-json-file-store/HEAD/src/memory_store.rs --------------------------------------------------------------------------------