chore: move to Rust edition 2021 (#180)

This commit is contained in:
Max Inden
2023-11-25 10:12:55 +01:00
committed by GitHub
parent b2528d836f
commit e0b0f495cf
3 changed files with 3 additions and 2 deletions

View File

@@ -1,2 +1,3 @@
[workspace]
members = ["yamux", "test-harness"]
resolver = "2"

View File

@@ -1,7 +1,7 @@
[package]
name = "test-harness"
version = "0.1.0"
edition = "2018"
edition = "2021"
publish = false
[dependencies]

View File

@@ -7,7 +7,7 @@ description = "Multiplexer over reliable, ordered connections"
keywords = ["network", "protocol"]
categories = ["network-programming"]
repository = "https://github.com/paritytech/yamux"
edition = "2018"
edition = "2021"
[dependencies]
futures = { version = "0.3.12", default-features = false, features = ["std"] }