From 59af66101c48e0560cebe6bd0504b03febc09338 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Wed, 26 Nov 2014 13:10:20 -0500 Subject: [PATCH] ordering, clarity --- README.md | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index bb1a3a6..fd8bd25 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,6 @@ rust-rocksdb ============ -* rust wrapper for rocksdb -* development began 11/16/14 -* status (uncompleted tasks are not ranked by priority): - - [x] basic open/put/get/close - - [x] linux support - - [x] rocksdb compiled via cargo - - [x] OSX support - - [ ] column family operations - - [ ] LRU cache - - [ ] destroy/repair - - [ ] batch - - [ ] iterator - - [ ] create/release snapshot - - [ ] range - - [ ] rustic merge operator - - [ ] compaction filter, style - - [ ] comparator - - [ ] slicetransform - - [ ] logger - - [ ] windows support - ### running - Cargo.toml ```rust @@ -44,4 +23,23 @@ fn main() { } ``` +### status + - [x] basic open/put/get/close + - [x] linux support + - [x] rocksdb compiled via cargo + - [x] OSX support + - [ ] column family operations + - [ ] LRU cache + - [ ] destroy/repair + - [ ] batch + - [ ] iterator + - [ ] create/release snapshot + - [ ] range + - [ ] rustic merge operator + - [ ] compaction filter, style + - [ ] comparator + - [ ] slicetransform + - [ ] logger + - [ ] windows support + - Feedback and pull requests welcome!