Skip to content

Commit

Permalink
disable nightly tests and update derive_more
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Apr 10, 2024
1 parent 0338e43 commit 5723d5e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 25 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ jobs:
channel:
- "stable"
- "beta"
- "nightly"
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
Expand Down
51 changes: 30 additions & 21 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ futures = "0.3"
hyper = { version = "0.14.16", features = ["full"], optional = true }
pin-project = "1"
quinn = { version = "0.10", optional = true }
serde = { version = "1.0.183" }
serde = { version = "1.0.183", features = ["derive"] }
tokio = { version = "1", default-features = false, features = ["macros"] }
tokio-serde = { version = "0.8", features = ["bincode"], optional = true }
tokio-util = { version = "0.7", features = ["codec"], optional = true }
Expand All @@ -37,7 +37,7 @@ version = "0.4.20"
[dev-dependencies]
anyhow = "1.0.73"
async-stream = "0.3.3"
derive_more = "0.99.17"
derive_more = { version = "1.0.0-beta.1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
quinn = "0.10"
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 @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
derive_more = "0.99.17"
derive_more = { version = "1.0.0-beta.1", features = ["from", "display", "try_into"] }
futures = "0.3.26"
quic-rpc = { path = "../../..", features = ["macros"] }
serde = { version = "1", features = ["derive"] }

0 comments on commit 5723d5e

Please sign in to comment.