Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use core::net::Ip{Addr, V4Addr, V6Addr}
Re-export the types from the standard library instead of duplicating their code. The types have been stable since Rust 1.6 and this crate has a MSRV of 1.60. Instead of re-exporting the equivalent types from core::net at the crate root, this change simply removes the names. This is semver-incompatible, but re-exporting types is also incompatible since a trait implementation in a consuming crate for, e.g., core::net::IpAddr and pki_types::IpAddr would now conflict.
- Loading branch information