Skip to content

Commit f6bfd24

Browse files
committed
Move Rust crates to a directory.
There's a lot going on in the top-level repository now, so it's time to separate Rust code from the rest of it. - Move all crates, including the main `dbsp` crate, to the `crates` directory. - Split nexmark query implementation and benchamarks into a separate crate.
1 parent 5439a6e commit f6bfd24

File tree

274 files changed

+738
-653
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+738
-653
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
# It's really `--all-features`, but not adding `persistence`, we expect the
77
# persistence feature to go away again in the future (but if we add it
88
# unconditionally it changes the code that's run significantly)
9-
ALMOST_ALL_FEATURES: --features "with-serde with-csv with-nexmark"
9+
ALMOST_ALL_FEATURES: --features "with-serde with-csv"
1010

1111
jobs:
1212
pre_job:

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
# It's really `--all-features`, but not adding `persistence`, we expect the
1212
# persistence feature to go away again in the future (but if we add it
1313
# unconditionally it changes the code that's run significantly)
14-
ALMOST_ALL_FEATURES: --features "with-serde with-csv with-nexmark"
14+
ALMOST_ALL_FEATURES: --features "with-serde with-csv"
1515

1616
jobs:
1717
pre_job:
@@ -410,4 +410,4 @@ jobs:
410410
uses: actions-rs/cargo@v1
411411
with:
412412
command: make
413-
args: --cwd pipeline_manager python_test
413+
args: --cwd crates/pipeline_manager python_test

0 commit comments

Comments
 (0)