Skip to content

Commit

Permalink
Merge branch 'main' into map-transports-not-services
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Nov 5, 2024
2 parents c30ba6a + be04be1 commit 2455dcf
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quic-rpc"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
keywords = ["api", "protocol", "network", "rpc"]
Expand All @@ -22,7 +22,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 = { package = "iroh-quinn", version = "0.11", optional = true }
quinn = { package = "iroh-quinn", version = "0.12", 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 }
Expand All @@ -42,7 +42,7 @@ async-stream = "0.3.3"

serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
quinn = { package = "iroh-quinn", version = "0.11", features = ["ring"] }
quinn = { package = "iroh-quinn", version = "0.12", features = ["ring"] }
rcgen = "0.12"
thousands = "0.2.0"
tracing-subscriber = "0.3.16"
Expand Down
2 changes: 1 addition & 1 deletion examples/split/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
anyhow = "1.0.14"
futures = "0.3.26"
quic-rpc = { path = "../../..", features = ["quinn-transport", "macros"] }
quinn = { package = "iroh-quinn", version = "0.11" }
quinn = { package = "iroh-quinn", version = "0.12" }
rustls = { version = "0.23", default-features = false, features = ["ring"] }
tracing-subscriber = "0.3.16"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/split/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async-stream = "0.3.3"
futures = "0.3.26"
tracing-subscriber = "0.3.16"
quic-rpc = { path = "../../..", features = ["quinn-transport", "macros"] }
quinn = { package = "iroh-quinn", version = "0.11" }
quinn = { package = "iroh-quinn", version = "0.12" }
rcgen = "0.12.0"
rustls = { version = "0.23", default-features = false, features = ["ring"] }
serde = { version = "1", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions quic-rpc-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quic-rpc-derive"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
authors = ["Rüdiger Klaehn <[email protected]>"]
keywords = ["api", "protocol", "network", "rpc", "macro"]
Expand All @@ -16,7 +16,7 @@ proc-macro = true
syn = { version = "1.0", features = ["full"] }
quote = "1.0"
proc-macro2 = "1.0"
quic-rpc = { version = "0.13", path = ".." }
quic-rpc = { version = "0.14", path = ".." }

[dev-dependencies]
derive_more = "1.0.0-beta.6"
Expand Down

0 comments on commit 2455dcf

Please sign in to comment.