Skip to content

Commit

Permalink
Make tokio-stream non optional
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Jul 23, 2024
1 parent a714a15 commit 6e8618b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 125 deletions.
122 changes: 1 addition & 121 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quic-rpc"
version = "0.11.0"
version = "0.10.2"
edition = "2021"
authors = ["Rüdiger Klaehn <[email protected]>"]
keywords = ["api", "protocol", "network", "rpc"]
Expand Down Expand Up @@ -33,7 +33,7 @@ interprocess = { version = "2.1", features = ["tokio"], optional = true }
hex = "0.4.3"
futures = { version = "0.3.30", optional = true }
anyhow = "1.0.73"
tokio-stream = { version = "0.1", optional = true }
tokio-stream = { version = "0.1" }

[dependencies.educe]
# This is an unused dependency, it is needed to make the minimal
Expand All @@ -60,7 +60,7 @@ futures-buffered = "0.2.4"
hyper-transport = ["dep:flume", "dep:hyper", "dep:bincode", "dep:bytes", "dep:tokio-serde", "dep:tokio-util"]
quinn-transport = ["dep:flume", "dep:quinn", "dep:bincode", "dep:tokio-serde", "dep:tokio-util"]
flume-transport = ["dep:flume"]
tokio-mpsc-transport = ["dep:tokio-util", "dep:tokio-stream"]
tokio-mpsc-transport = ["dep:tokio-util"]
interprocess-transport = ["quinn-transport", "quinn-flume-socket", "dep:quinn-udp", "dep:interprocess", "dep:bytes", "dep:tokio-util", "dep:futures"]
combined-transport = []
quinn-flume-socket = ["dep:flume", "dep:quinn", "dep:quinn-udp", "dep:bytes", "dep:tokio-util"]
Expand All @@ -87,4 +87,4 @@ name = "modularize"
required-features = ["flume-transport"]

[workspace]
members = ["examples/split/types", "examples/split/server", "examples/split/client", "quic-rpc-derive"]
members = ["examples/split/types", "examples/split/server", "examples/split/client"]

0 comments on commit 6e8618b

Please sign in to comment.