You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`InetPair`: pair of two addresses in the same network
10
+
- Implement "trait" functions directly on data types and only forward in trait impl (#6); this makes it easier to use datastructs without traits in scope.
11
+
12
+
### Changed
13
+
14
+
- Made `bitstring` dependency optional. Use `cidr = { version = "0.2.0", features = [ "bitstring" ] }` to enable it.
15
+
- Removed `serde` from default features. Use `cidr = { version = "0.2.0", features = [ "serde" ] }` to enable it.
16
+
- Added `std` feature; enabled by default. Also mandatory for now as `std::net` isn't available in `core`.
17
+
- Seal trait implementations
18
+
- Renamed `Inet::next` to `Inet::increment`
19
+
- Iterators (on `IpCidr` structs) now return `Inet` items instead of flat addresses. Use `.addresses()` on the iterator type to only iterate over the addresses.
0 commit comments