mozilla / webrtc-sdp

Rust SDP parser for WebRTC
Mozilla Public License 2.0
155 stars 30 forks source link

Fix deprecated range patterns #131

Closed na-g closed 5 years ago

na-g commented 5 years ago

src/attribute_type.rs uses the "..." range pattern in a number of places. That has been deprecated and should be replaced with "..=".

na-g commented 5 years ago

Fixed by #137