Skip to content

Commit 5d52cd7

Browse files
authored
Use distance_ext for evaluating ST_DWithin/ST_Distance in spatial join and upgrade dependencies (#108)
1 parent 9f36d8b commit 5d52cd7

File tree

4 files changed

+128
-68
lines changed

4 files changed

+128
-68
lines changed

.github/workflows/dev.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,19 @@ jobs:
3838
- uses: actions/setup-python@v5
3939
with:
4040
python-version: '3.x'
41+
- name: Install pinned Rust toolchain
42+
id: rust
43+
run: |
44+
set -euxo pipefail
45+
# Extract pinned channel from rust-toolchain.toml (keeps single source of truth)
46+
TOOLCHAIN=$(awk -F '"' '/^channel/ {print $2}' rust-toolchain.toml)
47+
echo "Pinned toolchain: ${TOOLCHAIN}"
48+
rustup toolchain install "${TOOLCHAIN}" --profile minimal --no-self-update
49+
rustup component add --toolchain "${TOOLCHAIN}" rustfmt clippy
50+
rustup default "${TOOLCHAIN}"
51+
rustup show active-toolchain
52+
rustc -V
53+
cargo -V
4154
- name: pre-commit (cache)
4255
uses: actions/cache@v4
4356
with:

0 commit comments

Comments
 (0)