Skip to content

Commit

Permalink
Enable map_view feature in pixi run rerun (rerun-io#8062)
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
emilk authored Nov 11, 2024
1 parent f3b52e5 commit 5cac305
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 5cac305

Please sign in to comment.