File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " posix-space"
3
- version = " 1.0.0 " # remember to set `html_root_url` in `src/lib.rs`.
3
+ version = " 1.0.1 " # remember to set `html_root_url` in `src/lib.rs`.
4
4
authors = [" Ryan Lopopolo <rjl@hyperbo.la>" ]
5
5
license = " MIT"
6
6
edition = " 2018"
Original file line number Diff line number Diff line change 9
9
[ ![ API trunk] ( https://img.shields.io/badge/docs-trunk-blue.svg )] ( https://artichoke.github.io/posix-space/posix_space/ )
10
10
11
11
A small crate which determines if a byte is classified as a space in the POSIX
12
- locale [ POSIX.1-2017] , chapter 7, [ Locale] .
12
+ locale per [ POSIX.1-2017] , chapter 7, [ Locale] .
13
13
14
14
[ posix.1-2017 ] : https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html
15
15
[ locale] :
@@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:
33
33
34
34
``` toml
35
35
[dependencies ]
36
- posix-space = " 1.0.0 "
36
+ posix-space = " 1.0.1 "
37
37
```
38
38
39
39
Then classify bytes like:
Original file line number Diff line number Diff line change 17
17
#![ cfg_attr( docsrs, feature( doc_cfg) ) ]
18
18
#![ cfg_attr( docsrs, feature( doc_alias) ) ]
19
19
20
- //! A small crate which determines if a byte is classified as a space in the POSIX locale
21
- //! [POSIX.1-2017], chapter 7, [Locale].
20
+ //! A small crate which determines if a byte is classified as a space in the
21
+ //! POSIX locale per [POSIX.1-2017], chapter 7, [Locale].
22
22
//!
23
23
//! [POSIX.1-2017]: https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html
24
24
//! [Locale]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html
35
35
//!
36
36
//! [`isspace`]: https://linux.die.net/man/3/isspace
37
37
38
- #![ doc( html_root_url = "https://docs.rs/posix-space/1.0.0 " ) ]
38
+ #![ doc( html_root_url = "https://docs.rs/posix-space/1.0.1 " ) ]
39
39
#![ no_std]
40
40
41
41
// Ensure code blocks in README.md compile
You can’t perform that action at this time.
0 commit comments