You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> cargo install --version 0.37.0 fj-app
... snip ...
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/cube.obj: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:15:13
|
15 | include_bytes!("../../../assets/navigation_cube/cube.obj");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/cube.mtl: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:17:13
|
17 | include_bytes!("../../../assets/navigation_cube/cube.mtl");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/front.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:19:13
|
19 | include_bytes!("../../../assets/navigation_cube/front.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/right.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:21:13
|
21 | include_bytes!("../../../assets/navigation_cube/right.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/rear.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:23:13
|
23 | include_bytes!("../../../assets/navigation_cube/rear.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/left.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:25:13
|
25 | include_bytes!("../../../assets/navigation_cube/left.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/top.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:27:13
|
27 | include_bytes!("../../../assets/navigation_cube/top.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
error: couldn't read /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/../../../assets/navigation_cube/bottom.png: No such file or directory (os error 2)
--> /Users/ykoma/.cargo/registry/src/github.aaakk.us.kg-1ecc6299db9ec823/fj-viewer-0.37.0/src/assets.rs:29:13
|
29 | include_bytes!("../../../assets/navigation_cube/bottom.png");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: this error originates in the macro `include_bytes` (in Nightly builds, run with -Z macro-backtrace for more info)
Compiling futures v0.3.26
error: could not compile `fj-viewer` due to 8 previous errors
warning: build failed, waiting for other jobs to finish...
error: failed to compile `fj-app v0.37.0`, intermediate artifacts can be found at `/var/folders/dj/2r8nstk968s9t2cfzf38_7v40000gn/T/cargo-install3o1uAk`
I think that /assets/navigation_cube directory is not accessible in .cargo directory.
The text was updated successfully, but these errors were encountered:
This was introduced in #1573. I should have caught this in review. Oh well 😄
This is also the second bug of this kind that made it into a release in the recent months. We are currently running cargo publish with the --no-verify option to save time and CI resources, but I think this was a mistake, as it would catch issues like this.
I will fix this issue and look into removing --no-verify in the next few days.
cargo install
failed on 0.37.0.I think that
/assets/navigation_cube
directory is not accessible in.cargo
directory.The text was updated successfully, but these errors were encountered: