Skip to content
This repository was archived by the owner on May 30, 2022. It is now read-only.

Commit 38f2a2f

Browse files
committed
quick-xml returned back and active again. Add end-of-life notice
1 parent 424dfc7 commit 38f2a2f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fast-xml"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
description = "High performance xml reader and writer"
55
edition = "2018"
66

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# [quick-xml] returned back and active again. Please use it
12
# fast-xml -- successor of [quick-xml]
23

34
![status](https://github.com/Mingun/fast-xml/actions/workflows/rust.yml/badge.svg)

src/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//! Please use [quick-xml]. This project was born as its successor, but [quick-xml]
2+
//! raised again.
3+
//!
14
//! High performance XML reader/writer.
25
//!
36
//! ## Description
@@ -7,7 +10,7 @@
710
//! A streaming API based on the [StAX] model. This is suited for larger XML documents which
811
//! cannot completely read into memory at once.
912
//!
10-
//! The user has to expicitely _ask_ for the next XML event, similar
13+
//! The user has to explicitly _ask_ for the next XML event, similar
1114
//! to a database cursor.
1215
//! This is achieved by the following two structs:
1316
//!
@@ -125,6 +128,7 @@
125128
//!
126129
//! [StAX]: https://en.wikipedia.org/wiki/StAX
127130
//! [Serde]: https://serde.rs/
131+
//! [quick-xml]: https://github.com/tafia/quick-xml
128132
#![cfg_attr(
129133
feature = "document-features",
130134
cfg_attr(doc, doc = ::document_features::document_features!())

0 commit comments

Comments
 (0)