File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " unicode-normalization"
4
- version = " 0.1.6 "
4
+ version = " 0.1.7 "
5
5
authors = [" kwantam <kwantam@gmail.com>" ]
6
6
7
7
homepage = " https://github.com/unicode-rs/unicode-normalization"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use unicode_normalization::UnicodeNormalization;
14
14
15
15
fn main () {
16
16
assert_eq! (compose ('A' ,'\ u {30a}' ), Some ('Å' ));
17
-
17
+
18
18
let s = " ÅΩ" ;
19
19
let c = s . nfc (). collect :: <String >();
20
20
assert_eq! (c , " ÅΩ" );
@@ -28,5 +28,5 @@ to your `Cargo.toml`:
28
28
29
29
``` toml
30
30
[dependencies ]
31
- unicode-normalization = " 0.1.5 "
31
+ unicode-normalization = " 0.1.7 "
32
32
```
Original file line number Diff line number Diff line change 34
34
//!
35
35
//! ```toml
36
36
//! [dependencies]
37
- //! unicode-normalization = "0.1.3 "
37
+ //! unicode-normalization = "0.1.7 "
38
38
//! ```
39
39
40
40
#![ deny( missing_docs, unsafe_code) ]
You can’t perform that action at this time.
0 commit comments