mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-20 18:28:16 +00:00
* add wal-registry * add NamespaceName Placeholder type mirroring NamespaceName from libsql-server. * add shared-wal * edits * Apply suggestions from code review Co-authored-by: Avinash Sajjanshetty <640792+avinassh@users.noreply.github.com> * Update libsql-wal/src/shared_wal.rs Co-authored-by: Avinash Sajjanshetty <640792+avinassh@users.noreply.github.com> * fix potential race condition in registry * fix read lock busy loop * fix lib modules * add missing dep * fmt --------- Co-authored-by: Avinash Sajjanshetty <640792+avinassh@users.noreply.github.com>
22 lines
556 B
TOML
22 lines
556 B
TOML
[package]
|
|
name = "libsql-wal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arc-swap = "1.7.1"
|
|
bytes = "1.6.0"
|
|
crossbeam = "0.8.4"
|
|
fst = "0.4.7"
|
|
hashbrown = "0.14.3"
|
|
libsql-sys = { path = "../libsql-sys", features = ["rusqlite"] }
|
|
memoffset = "0.9.1"
|
|
nix = { version = "0.28.0", features = ["uio", "fs"] }
|
|
parking_lot = "0.12.1"
|
|
thiserror = "1.0.58"
|
|
tracing = "0.1.40"
|
|
walkdir = "2.5.0"
|
|
zerocopy = { version = "0.7.32", features = ["derive", "alloc"] }
|