Skip to content

Commit 84f77e0

Browse files
committed
Redirect to the new crate
1 parent c4a9653 commit 84f77e0

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
*.swo
33
/doc
44
*~
5-
/target/
6-
/Cargo.lock
5+
target/
6+
Cargo.lock
77
.idea/
88
*.iml
99
/tests/xmlconf/

redirect-xml-rs/Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "xml-rs"
3+
version = "1.0.0-rc.2"
4+
authors = ["Vladimir Matveev <vmatveev@citrine.cc>", "Kornel (https://github.com/kornelski)"]
5+
license = "MIT"
6+
description = "A simple XML library in pure Rust\n(this crate has been renamed to `xml`)"
7+
repository = "https://github.com/netvl/xml-rs"
8+
homepage = "https://lib.rs/crates/xml"
9+
documentation = "https://docs.rs/xml-rs/"
10+
readme = "../README.md"
11+
keywords = ["xml", "sax", "parser", "event-reader", "event-writer"]
12+
categories = ["parser-implementations"]
13+
edition = "2024"
14+
rust-version = "1.85"
15+
include = ["src/lib.rs"]
16+
17+
[lib]
18+
name = "xml"
19+
path = "src/lib.rs"
20+
21+
[dependencies]
22+
xml1 = { package = "xml", version = "1.0.0-rc.2" }
23+
24+
[workspace]

redirect-xml-rs/src/lib.rs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//! # This is `xml-rs` crate
2+
//!
3+
//! This crate [has been renamed to `xml`](https://lib.rs/crates/xml).
4+
//!
5+
//! Please update your dependencies:
6+
//!
7+
//! ```toml
8+
//! xml = "1.0"
9+
//! ```
10+
//!
11+
//! # Use the `xml` crate instead
12+
//!
13+
//! [Go to the the latest documentation](https://docs.rs/xml).
14+
15+
pub use xml1::*;

0 commit comments

Comments
 (0)