Skip to content

Commit

Permalink
Merge pull request #23 from OliverKillane/enh/reference-backend
Browse files Browse the repository at this point in the history
Serialized Backend Implementation
  • Loading branch information
OliverKillane authored Jun 10, 2024
2 parents 1ccc84f + 77b0e1f commit 40de048
Show file tree
Hide file tree
Showing 220 changed files with 21,423 additions and 1,831 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: cargo test
working-directory: crates
- name: run doc build
run: cargo doc
run: cargo doc --document-private-items
working-directory: crates
- name: check formatting
run: cargo fmt -- --check
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
## What is this?
An embedded, in-memory database that is generated by a schema compiler, and can be embedded in a rust application, with rust embedded inside of it.

This project is an experiment and while functional, it is not fully tested & the interface is unstable.

## Project Structure
### [`./crates` → Contains the libraries developed for this project](./crates)
### [`./bench` → Benchmarks against other systems](./bench)
### [`./book` → The emDB book](./book) [→ hosted here](https://oliverkillane.github.io/emDB/)
### [`./papers` → Academic works developed alongside this project](./papers/)

Expand Down
1 change: 1 addition & 0 deletions bench/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target/
Loading

0 comments on commit 40de048

Please sign in to comment.