File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 0.3.1] - 2025-01-18
4
+
5
+ - raise serde version to support no-std builds
6
+ - enable all Error impls in no-std (actually making std-feature unused)
7
+
3
8
## [ 0.3.0] - 2024-09-30
4
9
5
10
- remove short IPv4 address support in ` FromStr ` implementations
49
54
[ 0.2.2 ] : https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.1...cidr-0.2.2
50
55
[ 0.2.3 ] : https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.2...cidr-0.2.3
51
56
[ 0.3.0 ] : https://github.com/stbuehler/rust-cidr/compare/cidr-0.2.3...cidr-0.3.0
57
+ [ 0.3.1 ] : https://github.com/stbuehler/rust-cidr/compare/cidr-0.3.0...cidr-0.3.1
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cidr"
3
3
# also bump version in html_root_url in src/lib.rs
4
- version = " 0.3.0 "
4
+ version = " 0.3.1 "
5
5
edition = " 2021"
6
6
rust-version = " 1.81"
7
7
authors = [
" Stefan Bühler <[email protected] >" ]
Original file line number Diff line number Diff line change 3
3
#![ cfg_attr( feature = "no_unsafe" , forbid( unsafe_code) ) ]
4
4
#![ warn( missing_docs) ]
5
5
#![ warn( rust_2018_idioms) ]
6
- #![ doc( html_root_url = "https://docs.rs/cidr/0.3.0 " ) ]
6
+ #![ doc( html_root_url = "https://docs.rs/cidr/0.3.1 " ) ]
7
7
#![ allow( clippy:: match_like_matches_macro) ]
8
8
9
9
//! This library provides types to represent an IP network ([`Cidr`]) or
You can’t perform that action at this time.
0 commit comments