mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Clippy, fmt, configs
This commit is contained in:
parent
c5c05b0997
commit
33841c054d
2 changed files with 14 additions and 4 deletions
|
@ -120,7 +120,7 @@ built = { version = "=0.7.4", features = ["git2"] }
|
|||
default = []
|
||||
plugin = []
|
||||
tokio-console = ["dep:console-subscriber"]
|
||||
# optimizations = ["dep:wasm-opt"]
|
||||
optimizations = ["dep:wasm-opt"]
|
||||
|
||||
[[bin]]
|
||||
path = "src/main.rs"
|
||||
|
|
|
@ -7,9 +7,19 @@ use std::path::PathBuf;
|
|||
use std::str::FromStr;
|
||||
|
||||
#[derive(
|
||||
Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize, Debug, Default,
|
||||
Copy,
|
||||
Clone,
|
||||
Hash,
|
||||
PartialEq,
|
||||
Eq,
|
||||
PartialOrd,
|
||||
Ord,
|
||||
Serialize,
|
||||
Deserialize,
|
||||
Debug,
|
||||
Default,
|
||||
clap::ValueEnum,
|
||||
)]
|
||||
#[derive(clap::ValueEnum)]
|
||||
#[non_exhaustive]
|
||||
pub enum Platform {
|
||||
/// Targeting the web platform using WASM
|
||||
|
|
Loading…
Reference in a new issue