Skip to content

Commit

Permalink
refactor: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Mar 30, 2024
1 parent 166242b commit 727b7ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ http = "1.1"
http-body = "1"
http-body-util = "0.1"
hyper = { version = "1.2", features = ["server"] }
hyper-util = { version = "0.1.3", features = ["server-auto", "tokio"] }
hyper-util = { version = "0.1.3", features = ["server", "tokio"] }
mime = "0.3"
mime_guess = "2.0"
percent-encoding = "2.3"
Expand All @@ -93,7 +93,7 @@ rust-embed = "8"

futures-util = "0.3"
rustls-pemfile = "1.0"
tokio = { version = "1.36", features = ["net"] }
tokio = { version = "1.37", features = ["net"] }
tokio-native-tls = "0.3"
tokio-rustls = "0.24"
tokio-stream = "0.1"
Expand All @@ -119,13 +119,13 @@ tower-http = "0.5"

# soml
async-channel = "2.2"
async-executor = "1.8"
async-executor = "1.9"
async-io = "2.2"
async-net = "2.0"
smol-hyper = "0.1.1"
smol-macros = "0.1"
macro_rules_attribute = "0.2"
futures-lite = { version = "2.1.0", default-features = false, features = ["std"] }
futures-lite = { version = "2.1", default-features = false, features = ["std"] }

[workspace.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 2 additions & 2 deletions viz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ cors = ["viz-core/cors"]

compression = ["viz-core/compression"]

http1 = ["hyper/http1"]
http2 = ["hyper/http2"]
http1 = ["hyper/http1", "hyper-util/http1"]
http2 = ["hyper/http2", "hyper-util/http2"]

unix-socket = []

Expand Down

0 comments on commit 727b7ee

Please sign in to comment.