File tree 3 files changed +0
-4
lines changed
3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,5 @@ repository = "https://github.com/sfackler/rust-stringprep"
8
8
readme = " README.md"
9
9
10
10
[dependencies ]
11
- finl_unicode = " 1.2.0"
12
11
unicode-bidi = " 0.3"
13
12
unicode-normalization = " 0.1"
Original file line number Diff line number Diff line change 2
2
//!
3
3
//! [RFC 3454]: https://tools.ietf.org/html/rfc3454
4
4
#![ warn( missing_docs) ]
5
- extern crate finl_unicode;
6
5
extern crate unicode_bidi;
7
6
extern crate unicode_normalization;
8
7
9
- use finl_unicode:: categories:: CharacterCategories ;
10
8
use std:: borrow:: Cow ;
11
9
use std:: fmt;
12
10
use unicode_normalization:: UnicodeNormalization ;
Original file line number Diff line number Diff line change 1
1
//! Character Tables
2
- use finl_unicode:: categories:: CharacterCategories ;
3
2
use std:: cmp:: Ordering ;
4
3
use std:: str:: Chars ;
5
4
use unicode_bidi:: { bidi_class, BidiClass } ;
You can’t perform that action at this time.
0 commit comments