Skip to content

Commit eba3a06

Browse files
feat: update and cleanup deps (#80)
1 parent 92f472b commit eba3a06

File tree

4 files changed

+55
-89
lines changed

4 files changed

+55
-89
lines changed

Cargo.lock

Lines changed: 51 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ description = "A streaming rpc system based on quic"
1212
# Sadly this also needs to be updated in .github/workflows/ci.yml
1313
rust-version = "1.76"
1414

15-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16-
1715
[dependencies]
1816
bincode = { version = "1.3.3", optional = true }
1917
bytes = { version = "1", optional = true }
20-
derive_more = "0.99.17"
18+
derive_more = { version = "1.0.0-beta.6", features = ["from", "try_into", "display"] }
2119
flume = { version = "0.11", optional = true }
2220
futures-lite = "2.3.0"
2321
futures-sink = "0.3.30"
@@ -33,7 +31,6 @@ tracing = "0.1"
3331
quinn-udp = { package = "iroh-quinn-udp", version = "0.4.0", optional = true }
3432
interprocess = { version = "2.1", features = ["tokio"], optional = true }
3533
hex = "0.4.3"
36-
blake3 = "1.4.1"
3734
futures = { version = "0.3.30", optional = true }
3835

3936
[dependencies.educe]
@@ -49,7 +46,7 @@ async-stream = "0.3.3"
4946
serde = { version = "1", features = ["derive"] }
5047
tokio = { version = "1", features = ["full"] }
5148
quinn = { package = "iroh-quinn", version = "0.10" }
52-
rcgen = "0.10.0"
49+
rcgen = "0.12"
5350
rustls = "0.21"
5451
thousands = "0.2.0"
5552
tracing-subscriber = "0.3.16"

examples/split/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ futures = "0.3.26"
1212
tracing-subscriber = "0.3.16"
1313
quic-rpc = { path = "../../..", features = ["quinn-transport", "macros"] }
1414
quinn = { package = "iroh-quinn", version = "0.10" }
15-
rcgen = "0.10.0"
15+
rcgen = "0.12.0"
1616
rustls = "0.21"
1717
serde = { version = "1", features = ["derive"] }
1818
tokio = { version = "1", features = ["full"] }

examples/split/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ edition = "2021"
99
futures = "0.3.26"
1010
quic-rpc = { path = "../../..", features = ["macros"] }
1111
serde = { version = "1", features = ["derive"] }
12-
derive_more = "0.99.17"
12+
derive_more = { version = "1.0.0-beta.6", features = ["from", "try_into"] }

0 commit comments

Comments
 (0)