Migrate to Rust 2021 (#158)

This commit is contained in:
Taiki Endo 2023-10-08 14:46:23 +09:00 committed by GitHub
parent ceb88a46c4
commit a559165acd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,7 @@ name = "polling"
# - Create "v3.x.y" git tag
version = "3.2.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>", "John Nunley <dev@notgull.net>"]
edition = "2018"
edition = "2021"
rust-version = "1.63"
description = "Portable interface to epoll, kqueue, event ports, and IOCP"
license = "Apache-2.0 OR MIT"

View File

@ -46,7 +46,6 @@ use pin_project_lite::pin_project;
use std::cell::UnsafeCell;
use std::collections::hash_map::{Entry, HashMap};
use std::convert::TryFrom;
use std::ffi::c_void;
use std::fmt;
use std::io;