File tree Expand file tree Collapse file tree 4 files changed +7
-30
lines changed Expand file tree Collapse file tree 4 files changed +7
-30
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,13 @@ license = "Apache-2.0"
2828rust-version = " 1.82"
2929build = " build.rs"
3030
31+ [lib ]
32+ name = " distributed_datafusion"
33+ path = " src/lib.rs"
34+
3135[[bin ]]
3236name = " distributed-datafusion"
33- path = " src/main .rs"
37+ path = " src/bin/distributed-datafusion .rs"
3438
3539[dependencies ]
3640anyhow = " 1"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -68,14 +68,10 @@ if [ "$NUM_WORKERS" -lt 1 ]; then
6868fi
6969
7070# Check if the binary exists, build if not
71- if [ ! -f " ./target/release /distributed-datafusion" ]; then
71+ if [ ! -f " ./target/debug /distributed-datafusion" ]; then
7272 echo " Binary not found, building release version..."
7373 echo " This may take a few minutes on first run..."
74- if [ -f " ./build.sh" ]; then
75- ./build.sh # --release
76- else
77- cargo build # --release
78- fi
74+ cargo build # --release
7975
8076 # Verify the build was successful
8177 # if [ ! -f "./target/release/distributed-datafusion" ]; then
File renamed without changes.
You can’t perform that action at this time.
0 commit comments