Skip to content

Commit

Permalink
feat: refine the CLI tool (#33)
Browse files Browse the repository at this point in the history
* implement a repl

* remove debug log
  • Loading branch information
leiysky authored Jan 30, 2024
1 parent 83545ab commit 71342d4
Show file tree
Hide file tree
Showing 5 changed files with 450 additions and 96 deletions.
166 changes: 161 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions mini-lsm-mvcc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
farmhash = "1"
crc32fast = "1.3.2"
nom = "7.1.3"
rustyline = "13.0.0"

[dev-dependencies]
tempfile = "3"
Expand Down
2 changes: 2 additions & 0 deletions mini-lsm-starter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ crossbeam-channel = "0.5.11"
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
farmhash = "1"
nom = "7.1.3"
rustyline = "13.0.0"

[dev-dependencies]
tempfile = "3"
Loading

0 comments on commit 71342d4

Please sign in to comment.