Started new kv impl with support for mutable cells, just the basic interpreter. Going to add the lazy bytecode interperter next

This commit is contained in:
2023-05-14 23:50:27 -04:00
parent 82bfb5bc7b
commit ea1516fbd1
9 changed files with 1982 additions and 55 deletions

24
kv/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "kv"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.bench]
debug = true
[dependencies]
lalrpop-util = {version="0.19.7", features=["lexer"]}
regex = "1"
once_cell = "1.17.0"
anyhow = "1"
cranelift = "0.95.1"
cranelift-module = "0.95.1"
cranelift-jit = "0.95.1"
cranelift-native = "0.95.1"
[build-dependencies]
lalrpop = "0.19.7"