Remove references to vendored parser in Cargo.toml and dockerfiles

This commit is contained in:
PThorpe92
2025-09-29 09:46:29 -04:00
parent bd89554cad
commit 76b25a3beb
3 changed files with 0 additions and 6 deletions

View File

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

View File

@@ -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 \

View File

@@ -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/