Merge branch 'DioxusLabs:master' into master

This commit is contained in:
YuKun Liu 2022-03-24 15:20:18 +08:00 committed by GitHub
commit ed77d9d184
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ license = "MIT/Apache-2.0"
[dependencies]
# cli core
clap = {version = "3.0.14", features = ["derive"]}
clap = { version = "3.0.14", features = ["derive"] }
thiserror = "1.0.30"
wasm-bindgen-cli-support = "0.2.79"

View file

@ -3,7 +3,7 @@ use axum::{
http::StatusCode,
response::IntoResponse,
routing::{get, get_service},
AddExtensionLayer, Router,
Router,
};
use notify::{RecommendedWatcher, Watcher};
@ -88,7 +88,7 @@ pub async fn startup(config: CrateConfig) -> Result<()> {
},
),
)
.layer(AddExtensionLayer::new(ws_reload_state))
.layer(Extension(ws_reload_state))
.into_make_service(),
)
.await?;