ruma_common/percent_encode.rs
1use percent_encoding::{AsciiSet, CONTROLS};
2
3/// The [path percent-encode set] as defined in the WHATWG URL standard + `/` since
4/// we always encode single segments of the path.
5///
6/// [path percent-encode set]: https://url.spec.whatwg.org/#path-percent-encode-set
7pub(crate) const PATH_PERCENT_ENCODE_SET: &AsciiSet = &CONTROLS
8 .add(b' ')
9 .add(b'"')
10 .add(b'#')
11 .add(b'<')
12 .add(b'>')
13 .add(b'?')
14 .add(b'`')
15 .add(b'{')
16 .add(b'}')
17 .add(b'/');