Skip to content

Commit 8f66a11

Browse files
flossefosskers
authored andcommitted
Switch to Rust 2021 edition
1 parent 7610b71 commit 8f66a11

File tree

8 files changed

+4
-8
lines changed

8 files changed

+4
-8
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/seed"
1010
readme = "README.md"
1111
keywords = ["wasm", "webassembly", "frontend", "framework", "web"]
1212
categories = ["wasm", "web-programming"]
13-
edition = "2018"
13+
edition = "2021"
1414

1515
build = "build.rs"
1616

examples/e2e_encryption/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "client"
33
version = "0.1.0"
44
authors = ["Your Name <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[lib]
88
crate-type = ["cdylib"]

examples/e2e_encryption/client/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use shared::{
88
rand_core::OsRng,
99
DefaultCipherSuite,
1010
};
11-
use std::convert::TryInto;
1211

1312
// ------ ------
1413
// Init

examples/e2e_encryption/server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "server"
33
version = "0.1.0"
44
authors = ["Your Name <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[dependencies]
88
tokio = { version = "0.2", features = ["full"] } # sync with the one in `warp`

examples/e2e_encryption/server/src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use shared::{
88
rand_core::OsRng,
99
DefaultCipherSuite,
1010
};
11-
use std::convert::{TryFrom, TryInto};
1211
use std::sync::Arc;
1312
use tokio::sync::Mutex;
1413
use warp::hyper::body::Bytes;

src/app/streams/backoff_stream.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use futures::channel::mpsc;
22
use futures::stream::Stream;
33
use gloo_timers::callback::Timeout;
44
use rand::{rngs::SmallRng, Rng, SeedableRng};
5-
use std::convert::TryFrom;
65
use std::pin::Pin;
76
use std::rc::Rc;
87
use std::task::{Context, Poll};

src/browser/fetch/header.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! HTTP headers
22
33
use std::borrow::Cow;
4-
use std::iter::FromIterator;
54

65
// ------ Headers ------
76

src/browser/fetch/request.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use gloo_timers::callback::Timeout;
77
use js_sys::Uint8Array;
88
use serde::Serialize;
99
use serde_wasm_bindgen as swb;
10-
use std::{borrow::Cow, cell::RefCell, convert::TryFrom, rc::Rc};
10+
use std::{borrow::Cow, cell::RefCell, rc::Rc};
1111
use wasm_bindgen::JsValue;
1212

1313
/// Its methods configure the request, and handle the response. Many of them return the original

0 commit comments

Comments
 (0)