Update to 2021 edition

This commit is contained in:
Dirkjan Ochtman 2022-12-12 13:59:45 +01:00
parent 8a6b49371b
commit 75f466c1ce
3 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[package] [package]
name = "epp-client" name = "epp-client"
version = "0.6.0" version = "0.6.0"
edition = "2018" edition = "2021"
license = "MIT" license = "MIT"
description = "EPP (Extensible Provisioning Protocol) Client Library for Domain Registration and Management" description = "EPP (Extensible Provisioning Protocol) Client Library for Domain Registration and Management"
repository = "https://github.com/masalachai/epp-client" repository = "https://github.com/masalachai/epp-client"

View File

@ -1,4 +1,3 @@
use std::convert::TryInto;
use std::io; use std::io;
use std::sync::Arc; use std::sync::Arc;
use std::time::Duration; use std::time::Duration;

View File

@ -1,6 +1,5 @@
//! Manages registry connections and reading/writing to them //! Manages registry connections and reading/writing to them
use std::convert::TryInto;
use std::future::Future; use std::future::Future;
use std::pin::Pin; use std::pin::Pin;
use std::task::{Context, Poll}; use std::task::{Context, Poll};