Merge pull request #27 from penberg/core

Rename database directory to mvcc-rs
This commit is contained in:
Pekka Enberg
2023-05-09 10:59:19 +03:00
committed by GitHub
11 changed files with 3 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
[workspace]
resolver = "2"
members = [
"database",
"mvcc-rs",
"bindings/c",
]
[profile.release]
codegen-units = 1
panic = "abort"
strip = true
strip = true

View File

@@ -12,7 +12,7 @@ cbindgen = "0.24.0"
[dependencies]
base64 = "0.21.0"
mvcc-rs = { path = "../../database", features = ["tokio"] }
mvcc-rs = { path = "../../mvcc-rs", features = ["tokio"] }
tokio = { version = "1.27.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0" }