Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,8 @@ We currently support:

Currently missing/under development:

- Removing deletion tombstones from checkpoint trees
- Recovery of existing KVStore instances after shutdown
- Time-consistent isolated multi-key reads
- Key-only queries (i.e., `has_key`/`contains`; note, key-only scans
*are* currently supported)
- Saving/loading full point-in-time snapshots
- `fsync` like blocking call to ensure updates are durable (in the WAL)

Limitations (out-of-scope):

Expand Down
4 changes: 2 additions & 2 deletions conan.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "0.5",
"requires": [
"abseil/20250127.0",
"batteries/0.70.2",
"batteries/0.71.1",
"boost/1.88.0",
"bzip2/1.0.8",
"cli11/2.5.0",
Expand All @@ -15,7 +15,7 @@
"libpfm4/4.13.0",
"libunwind/1.8.1",
"liburing/2.11",
"llfs/0.44.0",
"llfs/0.46.0",
"openssl/3.6.0",
"pcg-cpp/cci.20220409",
"protobuf/3.21.12",
Expand Down
8 changes: 6 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ class TurtleKvRecipe(ConanFile):
"profile_queries": True,
}

package_id_embed_mode = "full_mode"
package_id_non_embed_mode = "full_mode"
package_id_unknown_mode = "full_mode"

#+++++++++++-+-+--+----- --- -- - - - -
# Optional metadata
#
Expand All @@ -85,10 +89,10 @@ def requirements(self):
}

self.requires("abseil/20250127.0", **VISIBLE, **OVERRIDE)
self.requires("batteries/[>=0.70.2 <1]", **VISIBLE, **OVERRIDE)
self.requires("batteries/[>=0.71.1 <1]", **VISIBLE, **OVERRIDE)
self.requires("boost/1.88.0", **VISIBLE, **OVERRIDE)
self.requires("glog/0.7.1", **VISIBLE)
self.requires("llfs/[>=0.44.0 <1]", **VISIBLE)
self.requires("llfs/[>=0.46.0 <1]", **VISIBLE)
self.requires("pcg-cpp/cci.20220409", **VISIBLE)
self.requires("yaml-cpp/[>=0.9.0 <1]")
self.requires("zlib/1.3.1", **OVERRIDE)
Expand Down
Loading