From 45d833afe56ee17ba6cbb2e2b7a0661fcb2be880 Mon Sep 17 00:00:00 2001 From: Handy-caT <37216852+Handy-caT@users.noreply.github.com> Date: Mon, 6 Apr 2026 14:24:32 +0300 Subject: [PATCH 1/2] remove wrong deps --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ac60baf..82e692c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,8 +46,8 @@ smart-default = "0.7.1" log = "0.4.29" # S3 support (optional) -rust-s3 = { version = "0.37", optional = true } -aws-creds = { version = "0.39", optional = true } +rust-s3 = { version = "0.37", optional = true, default-features = false, features = ["tokio-rustls-tls"] } +aws-creds = { version = "0.39", optional = true, default-features = false, features = ["rustls-tls"] } aws-region = { version = "0.28", optional = true } walkdir = { version = "2", optional = true } From b8e4b7e936e5ac32f0b9fb7803af463c7bcc1707 Mon Sep 17 00:00:00 2001 From: Handy-caT <37216852+Handy-caT@users.noreply.github.com> Date: Mon, 6 Apr 2026 14:36:58 +0300 Subject: [PATCH 2/2] update --- .gitignore | 8 +++++--- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9d11d1e..aa8da64 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ target Cargo.lock *.DS_Store -tests/data/sync/ -/tests/data/unsized_secondary_sync/ -/tests/data/unsized_primary_sync/ +tests/data/* +!tests/data/expected/ +!tests/data/persist_index_table_of_contents.wt.idx + +.claude diff --git a/Cargo.toml b/Cargo.toml index 82e692c..e28177b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["codegen", "examples", "performance_measurement", "performance_measur [package] name = "worktable" -version = "0.9.0-alpha5" +version = "0.9.0-alpha6" edition = "2024" authors = ["Handy-caT"] license = "MIT"