Skip to content

Commit

Permalink
fix: bump futures-channel to prevent locked versions from conflicting (
Browse files Browse the repository at this point in the history
…#3510)

* chore: hoist some versions, drop pretty_env_logger

* bump futures-channel
  • Loading branch information
jkelleyrtp authored Jan 7, 2025
1 parent ea8fd16 commit 773d805
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 28 deletions.
16 changes: 2 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ warnings = { version = "0.2.1" }

# a fork of pretty please for tests - let's get off of this if we can!
prettier-please = { version = "0.3.0", features = ["verbatim"]}
anyhow = "1.0.95"
clap = { version = "4.5.7" }
askama_escape = "0.10.3"
tracing = "0.1.37"
Expand All @@ -161,8 +162,8 @@ toml = "0.8"
tokio = "1.40"
slab = "0.4.2"
slotmap = { version = "1.0.7", features = ["serde"] }
futures = "0.3.30"
futures-channel = "0.3.21"
futures = "0.3.31"
futures-channel = "0.3.31"
futures-util = { version = "0.3", default-features = false }
rustc-hash = "1.1.0"
wasm-bindgen = "0.2.99"
Expand Down Expand Up @@ -297,7 +298,7 @@ ouroboros = { version = "*", optional = true }
[dev-dependencies]
dioxus = { workspace = true, features = ["router"] }
dioxus-ssr = { workspace = true }
futures-util = "0.3.21"
futures-util = "0.3.31"
separator = "0.4.1"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
Expand Down
7 changes: 3 additions & 4 deletions example-projects/wifi-scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.52"
pretty_env_logger = "0.5.0"
anyhow = { workspace = true }
tokio = { workspace = true, features = ["full"] }
dioxus = { workspace = true, features = ["desktop"] }
futures-channel = { workspace = true }
futures = { workspace = true }
wifiscanner = "0.5.1"
futures-channel = "0.3.19"
futures = "0.3.19"
4 changes: 2 additions & 2 deletions examples/fullstack-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ sqlx = { version = "0.7.0", features = [
http = { workspace = true, optional = true }
tower = { workspace = true, optional = true }

serde = "1.0.159"
execute = "0.2.12"
anyhow = "1.0.71"
serde = { workspace = true }
anyhow = { workspace = true }

[dependencies.axum_session]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-opt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "CLI optimizations for dioxus-cli"
keywords = ["dom", "ui", "gui", "react"]

[dependencies]
anyhow = "1"
anyhow = { workspace = true }
manganis-core = { workspace = true }
object = {version="0.36.0", features=["wasm"]}
serde = { workspace = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ cargo_metadata = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tokio-stream = "0.1.15"
chrono = "0.4.19"
anyhow = "1"
anyhow = { workspace = true }
hyper = { workspace = true }
hyper-util = "0.1.3"
hyper-rustls = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion packages/liveview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ generational-box = { workspace = true }
axum = { workspace = true, optional = true, features = ["ws"] }

[dev-dependencies]
pretty_env_logger = { version = "0.5.0" }
tokio = { workspace = true, features = ["full"] }
axum = { workspace = true, features = ["ws"] }
tower = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/liveview/examples/axum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn app() -> Element {

#[tokio::main]
async fn main() {
pretty_env_logger::init();
dioxus::logger::initialize_default();

let addr: std::net::SocketAddr = ([127, 0, 0, 1], 3030).into();

Expand Down
2 changes: 1 addition & 1 deletion packages/liveview/examples/axum_stress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fn app() -> Element {

#[tokio::main]
async fn main() {
pretty_env_logger::init();
dioxus::logger::initialize_default();

let addr: std::net::SocketAddr = ([127, 0, 0, 1], 3030).into();

Expand Down

0 comments on commit 773d805

Please sign in to comment.