Replace deprecated collections::Bound with ops::Bound

This commit is contained in:
bstrie 2021-03-18 17:48:14 -04:00
parent dd08639f15
commit e3829405a7
1 changed files with 1 additions and 1 deletions

View File

@ -4,9 +4,9 @@ use hyper::{self, Client};
use hyper_native_tls::NativeTlsClient;
use std::cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd};
use std::collections::BTreeSet;
use std::collections::Bound::{Included, Unbounded};
use std::io::prelude::*;
use std::net::IpAddr;
use std::ops::Bound::{Included, Unbounded};
use std::str::FromStr;
#[derive(Debug)]