Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Locked dependencies for publishing #9

Merged
merged 3 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,16 @@ 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" }
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 = { 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"] }
server_fn = { git = "https://github.com/leptos-rs/leptos", features = ["generic"] }
http = "1.1.0"
parking_lot = "0.12.3"
bytes = "1.7.2"
Expand Down
2 changes: 1 addition & 1 deletion src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
//! [`Mode`] enum to trade-off reactivity for less host context switch
//! with the [`Mode::Stalled`] variant.

use any_spawner::CustomExecutor;
use futures::{
channel::mpsc::{UnboundedReceiver, UnboundedSender},
executor::{LocalPool, LocalSpawner},
task::{LocalSpawnExt, SpawnExt},
FutureExt, Stream,
};
use leptos::task::{any_spawner, CustomExecutor};
use parking_lot::Mutex;
use std::{
cell::RefCell,
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ pub mod prelude {
executor::Executor as WasiExecutor, handler::Handler, response::Body,
utils::redirect,
};
pub use any_spawner::Executor;
pub use http::StatusCode;
pub use wasi::exports::wasi::http::incoming_handler::{
IncomingRequest, ResponseOutparam,
Expand Down