File tree Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Expand file tree Collapse file tree 2 files changed +2
-19
lines changed Original file line number Diff line number Diff line change 5
5
6
6
- Raise MSRV to 1.65.
7
7
See [ PR 3715] .
8
+ - Remove deprecated ` Mdns ` prefixed items. See [ PR 3699] .
8
9
9
10
[ PR 3621 ] : https://github.com/libp2p/rust-libp2p/pull/3621
10
11
[ PR 3715 ] : https://github.com/libp2p/rust-libp2p/pull/3715
12
+ [ PR 3699 ] : https://github.com/libp2p/rust-libp2p/pull/3699
11
13
12
14
## 0.43.1
13
15
Original file line number Diff line number Diff line change 38
38
use std:: net:: { Ipv4Addr , Ipv6Addr } ;
39
39
use std:: time:: Duration ;
40
40
41
- #[ deprecated(
42
- since = "0.42.0" ,
43
- note = "Use re-exports that omit `Mdns` prefix, i.e. `libp2p::mdns::Config`"
44
- ) ]
45
- pub type MdnsConfig = Config ;
46
-
47
- #[ deprecated(
48
- since = "0.42.0" ,
49
- note = "Use re-exports that omit `Mdns` prefix, i.e. `libp2p::mdns::Event`"
50
- ) ]
51
- pub type MdnsEvent = Event ;
52
-
53
- #[ deprecated(
54
- since = "0.42.0" ,
55
- note = "Use the async-io prefixed `Mdns`, i.e. `libp2p::mdns::async_io::Mdns`"
56
- ) ]
57
- #[ cfg( feature = "async-io" ) ]
58
- pub type Mdns = async_io:: Behaviour ;
59
-
60
41
mod behaviour;
61
42
pub use crate :: behaviour:: { Behaviour , Event } ;
62
43
You can’t perform that action at this time.
0 commit comments