-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fcd1f36
Showing
4 changed files
with
546 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
target | ||
Cargo.lock | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "jfs" | ||
version = "0.1.0" | ||
authors = ["Markus Kohlhase <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://github.com/flosse/rust-json-file-store" | ||
repository = "https://github.com/flosse/rust-json-file-store" | ||
description = "A JSON file store" | ||
keywords = ["json", "file", "store", "db", "database"] | ||
|
||
[dependencies] | ||
uuid = { version = "0.2", features = ["v4"] } | ||
rustc-serialize = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# JSON file store | ||
|
||
A simple JSON file store written in Rust. | ||
This is a port and drop-in replacement of the Node.js library | ||
[json-file-store](https://github.com/flosse/json-file-store/). | ||
|
||
WARNING: | ||
Don't use it if you want to persist a large amount of objects. | ||
Use a real DB instead. | ||
|
||
## Usage | ||
|
||
Add the following to your `Cargo.toml` | ||
|
||
[dependencies] | ||
jfs = "0.1" | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. |
Oops, something went wrong.