fix readme

This commit is contained in:
Tove 2023-06-19 06:49:13 +02:00
parent 829902777b
commit 56fbd1f7c7
Signed by: TudbuT
GPG key ID: 7D63D5634B7C417F
2 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "microdb"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "A very small in-program database with cache, disk storage, etc."
license = "MIT"

View file

@ -5,15 +5,15 @@ next incredibly successful Discord clone (tho I suppose you could make that work
## Completed features
[x] Disk storage
[x] Getting, setting, allocation, deallocation
[x] Caching
[x] Automatic recovery on error
[x] Serialization for basic types (numbers, strings, vecs, options, results)
[x] Easy-to-implement serialization
[ ] Derivable serialization
[ ] (maybe) Multi-client support over TCP
[ ] (maybe) Mirroring operations to backup server (needs TCP)
- [x] Disk storage
- [x] Getting, setting, allocation, deallocation
- [x] Caching
- [x] Automatic recovery on error
- [x] Serialization for basic types (numbers, strings, vecs, options, results)
- [x] Easy-to-implement serialization
- [ ] Derivable serialization
- [ ] (maybe) Multi-client support over TCP
- [ ] (maybe) Mirroring operations to backup server (needs TCP)
## How to use it