From 5cac305acf74dc89a835323ecf504c945ee6ff42 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 11 Nov 2024 15:37:00 +0100 Subject: [PATCH] Enable `map_view` feature in `pixi run rerun` (#8062) ### What `pixi run rerun` now includes `map_view` feature ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) --- pixi.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pixi.toml b/pixi.toml index b51743d6081c..8eb7e5b45a0c 100644 --- a/pixi.toml +++ b/pixi.toml @@ -136,18 +136,18 @@ man = "cargo --quiet run --package rerun-cli --all-features -- man > docs/conten # Compile and run the rerun viewer. # # You can also give an argument for what to view (e.g. an .rrd file). -rerun = "cargo run --package rerun-cli --no-default-features --features native_viewer,nasm --" +rerun = "cargo run --package rerun-cli --no-default-features --features map_view,nasm,native_viewer --" # Compile `rerun-cli` without the web-viewer. -rerun-build = "cargo build --package rerun-cli --no-default-features --features native_viewer,nasm" +rerun-build = "cargo build --package rerun-cli --no-default-features --features map_view,nasm,native_viewer" # Compile `rerun-cli` without the web-viewer. -rerun-build-release = "cargo build --package rerun-cli --release --no-default-features --features native_viewer,nasm" +rerun-build-release = "cargo build --package rerun-cli --release --no-default-features --features map_view,nasm,native_viewer" # Compile and run the rerun viewer with --release. # # You can also give an argument for what to view (e.g. an .rrd file). -rerun-release = "cargo run --package rerun-cli --no-default-features --features native_viewer,nasm --release --" +rerun-release = "cargo run --package rerun-cli --no-default-features --features map_view,nasm,native_viewer --release --" # Compile `rerun-cli` with the same feature set as we build for releases. rerun-build-native-and-web = { cmd = "cargo build --package rerun-cli --no-default-features --features release --", depends_on = [