From 76b25a3bebed5b457a63823cb572eede0601567a Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Mon, 29 Sep 2025 09:46:29 -0400 Subject: [PATCH] Remove references to vendored parser in Cargo.toml and dockerfiles --- Cargo.toml | 2 -- Dockerfile.antithesis | 2 -- simulator-docker-runner/Dockerfile.simulator | 2 -- 3 files changed, 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e828acfd..a84754984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,6 @@ members = [ "stress", "testing/sqlite_test_ext", "tests", - "vendored/sqlite3-parser/sqlparser_bench", "parser", "sync/engine", "sql_generation", @@ -60,7 +59,6 @@ limbo_ipaddr = { path = "extensions/ipaddr", version = "0.2.0-pre.10" } turso_macros = { path = "macros", version = "0.2.0-pre.10" } limbo_percentile = { path = "extensions/percentile", version = "0.2.0-pre.10" } limbo_regexp = { path = "extensions/regexp", version = "0.2.0-pre.10" } -turso_sqlite3_parser = { path = "vendored/sqlite3-parser", version = "0.2.0-pre.10" } limbo_uuid = { path = "extensions/uuid", version = "0.2.0-pre.10" } turso_parser = { path = "parser", version = "0.2.0-pre.10" } limbo_fuzzy = { path = "extensions/fuzzy", version = "0.2.0-pre.10" } diff --git a/Dockerfile.antithesis b/Dockerfile.antithesis index a277c2128..bf54046db 100644 --- a/Dockerfile.antithesis +++ b/Dockerfile.antithesis @@ -34,7 +34,6 @@ COPY ./sync ./sync/ COPY ./testing/sqlite_test_ext ./testing/sqlite_test_ext/ COPY ./testing/unreliable-libc ./testing/unreliable-libc/ COPY ./tests ./tests/ -COPY ./vendored ./vendored/ COPY ./whopper ./whopper/ RUN cargo chef prepare --bin turso_stress --recipe-path recipe.json @@ -77,7 +76,6 @@ COPY --from=planner /app/sync ./sync/ COPY --from=planner /app/testing/sqlite_test_ext ./testing/sqlite_test_ext/ COPY --from=planner /app/testing/unreliable-libc ./testing/unreliable-libc/ COPY --from=planner /app/tests ./tests/ -COPY --from=planner /app/vendored ./vendored/ COPY --from=planner /app/whopper ./whopper/ RUN if [ "$antithesis" = "true" ]; then \ diff --git a/simulator-docker-runner/Dockerfile.simulator b/simulator-docker-runner/Dockerfile.simulator index 5ad11acd9..7fd4d3e43 100644 --- a/simulator-docker-runner/Dockerfile.simulator +++ b/simulator-docker-runner/Dockerfile.simulator @@ -22,7 +22,6 @@ COPY parser ./parser/ COPY perf/encryption ./perf/encryption COPY perf/throughput/rusqlite ./perf/throughput/rusqlite COPY perf/throughput/turso ./perf/throughput/turso -COPY vendored ./vendored/ COPY cli ./cli/ COPY sqlite3 ./sqlite3/ COPY stress ./stress/ @@ -42,7 +41,6 @@ FROM chef AS builder COPY --from=planner /app/recipe.json recipe.json RUN cargo chef cook --bin limbo_sim --release --recipe-path recipe.json COPY --from=planner /app/core ./core/ -COPY --from=planner /app/vendored ./vendored/ COPY --from=planner /app/extensions ./extensions/ COPY --from=planner /app/macros ./macros/ COPY --from=planner /app/parser ./parser/