Skip to content

Commit

Permalink
feat: update and cleanup deps (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed May 24, 2024
1 parent 92f472b commit eba3a06
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 89 deletions.
133 changes: 51 additions & 82 deletions Cargo.lock

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

7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ description = "A streaming rpc system based on quic"
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.76"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bincode = { version = "1.3.3", optional = true }
bytes = { version = "1", optional = true }
derive_more = "0.99.17"
derive_more = { version = "1.0.0-beta.6", features = ["from", "try_into", "display"] }
flume = { version = "0.11", optional = true }
futures-lite = "2.3.0"
futures-sink = "0.3.30"
Expand All @@ -33,7 +31,6 @@ tracing = "0.1"
quinn-udp = { package = "iroh-quinn-udp", version = "0.4.0", optional = true }
interprocess = { version = "2.1", features = ["tokio"], optional = true }
hex = "0.4.3"
blake3 = "1.4.1"
futures = { version = "0.3.30", optional = true }

[dependencies.educe]
Expand All @@ -49,7 +46,7 @@ async-stream = "0.3.3"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
quinn = { package = "iroh-quinn", version = "0.10" }
rcgen = "0.10.0"
rcgen = "0.12"
rustls = "0.21"
thousands = "0.2.0"
tracing-subscriber = "0.3.16"
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 @@ -12,7 +12,7 @@ futures = "0.3.26"
tracing-subscriber = "0.3.16"
quic-rpc = { path = "../../..", features = ["quinn-transport", "macros"] }
quinn = { package = "iroh-quinn", version = "0.10" }
rcgen = "0.10.0"
rcgen = "0.12.0"
rustls = "0.21"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/split/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ edition = "2021"
futures = "0.3.26"
quic-rpc = { path = "../../..", features = ["macros"] }
serde = { version = "1", features = ["derive"] }
derive_more = "0.99.17"
derive_more = { version = "1.0.0-beta.6", features = ["from", "try_into"] }

0 comments on commit eba3a06

Please sign in to comment.