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 ac60baf..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" @@ -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 }