File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ templates. XML5 tries to handle most common errors, in a manner similar to HTML5
23
23
24
24
- You aren't interested in well-formed documents.
25
25
- You need to get some info from your data even if it has errors (although not all possible errors are handled).
26
- - You want to features like character references or xml namespaces.
26
+ - You want to features like character references or XML namespaces.
27
27
28
28
## When you shouldn't use it
29
29
@@ -34,17 +34,11 @@ templates. XML5 tries to handle most common errors, in a manner similar to HTML5
34
34
35
35
# Installation
36
36
37
- Add xml5ever as a dependency in your project manifest.
37
+ Add xml5ever as a dependency in your project manifest:
38
38
39
39
``` toml
40
40
[dependencies ]
41
- xml5ever = " 0.1.3"
42
- ```
43
-
44
- And add crate declaration in your lib.rs
45
-
46
- ``` rust
47
- extern crate xml5ever
41
+ xml5ever = " 0.18"
48
42
```
49
43
50
44
# Getting started
@@ -77,9 +71,3 @@ To build examples and tests you need to do something along the lines of:
77
71
This will fetch tests from outside repository and it will invoke cargo to
78
72
build and test the crate. If you need docs checkout either [ API docs] ( https://docs.rs/xml5ever ) or run ` cargo docs `
79
73
to generate documentation.
80
-
81
- ## Easy first tasks
82
-
83
- What I generally recommend is to look at Clippy Linting badge results and create
84
- a PR for fixing the said lints. Other than that try to look for any tasks labeled
85
- easy or just update docs/examples.
You can’t perform that action at this time.
0 commit comments