dioxus-cli 0.7.6

CLI for building fullstack web, desktop, and mobile apps with a single codebase.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;
mod bundle;
mod component;
mod dioxus_config;
mod inline_config;
mod manifest;
mod manifest_mapper;
mod serve;
mod web;

pub(crate) use app::*;
pub(crate) use bundle::*;
pub(crate) use dioxus_config::*;
pub(crate) use inline_config::*;
pub(crate) use manifest::*;
pub(crate) use manifest_mapper::*;
pub(crate) use serve::*;
pub(crate) use web::*;