| Crates.io | rusdb-core |
| lib.rs | rusdb-core |
| version | 0.1.2 |
| created_at | 2021-09-22 22:01:11.226672+00 |
| updated_at | 2021-09-23 13:16:01.235841+00 |
| description | Database driver for `rusdb`, which uses gRPC to communicate. |
| homepage | |
| repository | https://github.com/envis10n/rusdb-core |
| max_upload_size | |
| id | 455123 |
| size | 17,557 |
Database driver for rusdb, which uses gRPC to communicate.
This is NOT production ready, and likely will never be. I'm exploring writing a database, and solving the problems that come up.
There is NO AUTHENTICATION. I plan to add something like this in the future, but for the time being, there is nothing there.
This crate provides the client side proto builds, a client implementation, and helper structs for easily manipulating collections and documents.
use rusdb_core;
This crate also re-exports a few crates that are useful:
tonic - The gRPC implementationbson - The encoding used for the data being passed between server and client, as well as for storage on disk.