Hi, I get this error when trying to build:
error: failed to load manifest for workspace member `/Users/linus/RustroverProjects/egui_tabular/demos/simple`
referenced by workspace at `/Users/linus/RustroverProjects/egui_tabular/Cargo.toml`
Caused by:
failed to load manifest for dependency `egui_tabular`
Caused by:
failed to load manifest for dependency `rvariant`
Caused by:
failed to read `/Users/linus/RustroverProjects/rvariant/Cargo.toml`
Caused by:
No such file or directory (os error 2)
Process finished with exit code 101
because the dependency path is hardcoded in the cargo.toml:
rvariant = { path = "../rvariant" }
this should probably point to your git:
rvariant = { git = "https://github.com/romixlab/rvariant" }
or to your published crate, if you decide to publish it at some point.
Hi, I get this error when trying to build:
because the dependency path is hardcoded in the
cargo.toml:this should probably point to your git:
or to your published crate, if you decide to publish it at some point.