Update to 2021 edition
This commit is contained in:
parent
8a6b49371b
commit
75f466c1ce
|
@ -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"
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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};
|
||||||
|
|
Loading…
Reference in New Issue