diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/rust/xmldecl/README.md | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/xmldecl/README.md')
-rw-r--r-- | third_party/rust/xmldecl/README.md | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/third_party/rust/xmldecl/README.md b/third_party/rust/xmldecl/README.md new file mode 100644 index 0000000000..9adfefd7e6 --- /dev/null +++ b/third_party/rust/xmldecl/README.md @@ -0,0 +1,38 @@ +# xmldecl + +[![crates.io](https://img.shields.io/crates/v/xmldecl.svg)](https://crates.io/crates/xmldecl) +[![docs.rs](https://docs.rs/xmldecl/badge.svg)](https://docs.rs/xmldecl/) +[![Apache 2 OR MIT dual-licensed](https://img.shields.io/badge/license-Apache%202%20%2F%20MIT-blue.svg)](https://github.com/hsivonen/xmldecl/blob/main/COPYRIGHT) + +`xmldecl::parse()` extracts an encoding from an ASCII-based bogo-XML +declaration in `text/html` in a Web-compatible way. + +See https://github.com/whatwg/html/pull/1752 + +## Licensing + +Please see the file named +[COPYRIGHT](https://github.com/hsivonen/xmldecl/blob/main/COPYRIGHT). + +## Documentation + +Generated [API documentation](https://docs.rs/xmldecl/) is available +online. + +## Minimum Supported Rust Version + +MSRV: 1.51.0 + +## Release Notes + +### 0.2.0 + +* Remove the 1024-byte limit. + +### 0.1.1 + +* Map UTF-16LE and UTF-16BE to UTF-8 as in `meta`. + +### 0.1.0 + +* The initial release. |