Skip to content

Commit

Permalink
Locked dependencies to rc1 or pinned revisions
Browse files Browse the repository at this point in the history
Signed-off-by: Darwin Boersma <[email protected]>
  • Loading branch information
ogghead committed Nov 22, 2024
1 parent 84e706a commit 1c09c33
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ version = "0.0.1"
edition = "2021"

[dependencies]
any_spawner = { git = "https://github.com/leptos-rs/leptos", features = ["futures-executor"] }
throw_error = { git = "https://github.com/leptos-rs/leptos" }
hydration_context = { git = "https://github.com/leptos-rs/leptos" }
any_spawner = { git = "https://github.com/leptos-rs/leptos", rev = "84bdd6b56892cc859b512b0de1dc139f83375f5d" , features = ["futures-executor"] }
throw_error = { version = "0.2.0-rc1" }
hydration_context = { version = "0.2.0-rc1" }
futures = "0.3.30"
wasi = "0.13.1+wasi-0.2.0"
leptos = { git = "https://github.com/leptos-rs/leptos", features = ["nonce", "ssr"] }
leptos_meta = { git = "https://github.com/leptos-rs/leptos", features = ["ssr"] }
leptos_router = { git = "https://github.com/leptos-rs/leptos", features = ["ssr"] }
leptos_macro = { git = "https://github.com/leptos-rs/leptos", features = ["generic"] }
leptos_integration_utils = { git = "https://github.com/leptos-rs/leptos" }
server_fn = { git = "https://github.com/leptos-rs/leptos", features = ["generic"] }
leptos = { version = "0.7.0-rc1", features = ["nonce", "ssr"] }
leptos_meta = { version = "0.7.0-rc1", features = ["ssr"] }
leptos_router ={ version = "0.7.0-rc1", features = ["ssr"] }
leptos_macro ={ version = "0.7.0-rc1", features = ["generic"] }
leptos_integration_utils = { version = "0.7.0-rc1" }
server_fn = { version = "0.7.0-rc1", features = ["generic"] }
http = "1.1.0"
parking_lot = "0.12.3"
bytes = "1.7.2"
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
//! that you can leverage to use this crate.
//!
//! ```
//! use leptos::task::Executor;
//! use leptos_wasi::prelude::WasiExecutor;
//! use leptos_wasi::prelude::{Executor, WasiExecutor};
//! use wasi::exports::http::incoming_handler::*;
//!
//! struct LeptosServer;
Expand Down

0 comments on commit 1c09c33

Please sign in to comment.