-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: Depend on iroh-quinn and bump version (#75)
- Loading branch information
Showing
9 changed files
with
65 additions
and
63 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "quic-rpc" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
edition = "2021" | ||
authors = ["Rüdiger Klaehn <[email protected]>"] | ||
keywords = ["api", "protocol", "network", "rpc"] | ||
|
@@ -23,7 +23,7 @@ futures-sink = "0.3.30" | |
futures-util = { version = "0.3.30", features = ["sink"] } | ||
hyper = { version = "0.14.16", features = ["full"], optional = true } | ||
pin-project = "1" | ||
quinn = { version = "0.10", optional = true } | ||
quinn = { package = "iroh-quinn", version = "0.10", optional = true } | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
tokio = { version = "1", default-features = false, features = ["macros", "sync"] } | ||
tokio-serde = { version = "0.8", features = ["bincode"], optional = true } | ||
|
@@ -42,7 +42,7 @@ async-stream = "0.3.3" | |
derive_more = { version = "1.0.0-beta.1", features = ["full"] } | ||
serde = { version = "1", features = ["derive"] } | ||
tokio = { version = "1", features = ["full"] } | ||
quinn = "0.10" | ||
quinn = { package = "iroh-quinn", version = "0.10" } | ||
rcgen = "0.10.0" | ||
rustls = "0.21" | ||
thousands = "0.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
//! | ||
//! RPC interaction pattern. | ||
|
||
use futures_lite::{Future, StreamExt}; | ||
use futures_util::{FutureExt, SinkExt}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters