From e3829405a71268da62c6fd0380d4f4013dfed85c Mon Sep 17 00:00:00 2001 From: bstrie <865233+bstrie@users.noreply.github.com> Date: Thu, 18 Mar 2021 17:48:14 -0400 Subject: [PATCH] Replace deprecated collections::Bound with ops::Bound --- src/asns.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asns.rs b/src/asns.rs index e074b12..684ea5d 100644 --- a/src/asns.rs +++ b/src/asns.rs @@ -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)]