File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 6565 --locked \
6666 -p rerun-cli \
6767 --no-default-features \
68- --features native_viewer,web_viewer \
68+ --features release \
6969 --release \
7070 --target x86_64-unknown-linux-gnu
7171
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ jobs:
180180 --locked \
181181 -p rerun-cli \
182182 --no-default-features \
183- --features native_viewer,web_viewer \
183+ --features release \
184184 --release \
185185 --target ${{ needs.set-config.outputs.TARGET }}
186186
Original file line number Diff line number Diff line change @@ -37,10 +37,16 @@ path = "src/bin/rerun.rs"
3737doc = false
3838
3939[features ]
40- # The default is what the user gets when they call `cargo install rerun-cli --locked`,
41- # so wer have all the bells and wistles here
40+ # # The default is what the user gets when they call `cargo install rerun-cli --locked`,
41+ # # so we have all the bells and wistles here, except those that may require extra tools
42+ # # (like "nasm").
43+ # # That is: `cargo install rerun-cli --locked` should work for _everyone_.
4244default = [" native_viewer" , " web_viewer" ]
4345
46+ # # The features we enable when we build the pre-built binaries during our releases.
47+ # # This may enable features that require extra build tools that not everyone heas.
48+ release = [" default" , " nasm" ]
49+
4450# # Enable faster native video decoding with assembly.
4551# # You need to install [nasm](https://nasm.us/) to compile with this feature.
4652nasm = [" rerun/nasm" ]
You can’t perform that action at this time.
0 commit comments