DioxusLabs / DioxusLabs/dioxus
use of unresolved module or unlinked crate `dioxus_fullstack`
- Dominant language
- Rust
- Stars
- 39.1k
- Forks
- 1.9k
- Avg merge
- 4d 10h
- Merged PRs (30d)
- 4
Description
**Problem**
```
14:50:30 [dev] -----------------------------------------------------------------
Serving your Dioxus app: dynamic_asset
• Press `ctrl+c` to exit the server
• Press `r` to rebuild the app
• Press `p` to toggle automatic rebuilds
• Press `v` to toggle verbose logging
• Press `/` for more commands and shortcuts
Learn more at https://dioxuslabs.com/learn/0.6/getting_started
----------------------------------------------------------------
14:50:34 [cargo] error[E0433]: failed to resolve: use of unresolved module or unlinked crate `dioxus_fullstack`
--> packages\dioxus\src\launch.rs:346:20
|
346 | return dioxus_fullstack::server::launch::launch(app, contexts, configs);
| ^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `dioxus_fullstack`
|
= help: if you wanted to use a crate named `dioxus_fullstack`, use `cargo add dioxus_fullstack` to add it to your `Cargo.toml`
help: consider importing one of these modules
|
3 + use crate::desktop::launch;
|
3 + use dioxus_desktop::launch;
|
help: if you import `launch`, refer to it directly
|
346 - return dioxus_fullstack::server::launch::launch(app, contexts, configs);
346 + return launch::launch(app, contexts, configs);
|
```
**Steps To Reproduce**
- checkout lastest on windows machine
- dx.exe serve --example dynamic_asset --features desktop
**Expected behavior**
should run
**Environment:**
- Dioxus version: dx --version
dioxus 0.6.3 (74789c4)
- Rust version: rustc 1.86.0 (05f9846f8 2025-03-31)
- OS info: win10
- App platform: desktop
**Questionnaire**
I'm interested in fixing this myself but don't know where to start.
all of the examples have features specified in the repo, they should be sufficient to run on their own. I am finding that dioxus_fullstack is not available and looks gated on "server" but that doesnt work if specified with desktop. tried fullstack. I just want the examples to run and Im running into this.
thanks
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.