Skip to content

Commit 6bf0b21

Browse files
authored
Upgrade rustix 0.36.13->0.36.14 and fix debug info (#3379)
This version of rustix no longer causes recompilation during tests runs while using VSCode. This commit also works around a bug introduced in rust 1.69.0 that was causing rebuilding between cargo build and cargo run. Fixes #3346
1 parent e6340b2 commit 6bf0b21

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/ui-ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
CI=false yarn --cwd quickwit-ui build
2727
cargo build --features=postgres
2828
mkdir qwdata
29-
# Workaround for possible rust regression - https://github.com/quickwit-oss/quickwit/issues/3346
30-
target/debug/quickwit run --service searcher --service metastore --config ../config/quickwit.yaml &
29+
cargo run --features=postgres -- run --service searcher --service metastore --config ../config/quickwit.yaml &
3130
yarn --cwd quickwit-ui cypress run
3231
- name: Lint
3332
command: yarn --cwd quickwit-ui lint

quickwit/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quickwit/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
rust-version = "1.68"
3+
rust-version = "1.69"
44
members = [
55
"quickwit-actors",
66
"quickwit-aws",
@@ -35,7 +35,7 @@ members = [
3535
]
3636

3737
[profile.dev]
38-
debug = 0
38+
debug = false
3939

4040
[workspace.dependencies]
4141
anyhow = "1"

0 commit comments

Comments
 (0)