Skip to content

Commit 5d8183f

Browse files
committed
Remove finl_unicode dependence
1 parent 6b6bbbe commit 5d8183f

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ repository = "https://github.com/sfackler/rust-stringprep"
88
readme = "README.md"
99

1010
[dependencies]
11-
finl_unicode = "1.2.0"
1211
unicode-bidi = "0.3"
1312
unicode-normalization = "0.1"

src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
//!
33
//! [RFC 3454]: https://tools.ietf.org/html/rfc3454
44
#![warn(missing_docs)]
5-
extern crate finl_unicode;
65
extern crate unicode_bidi;
76
extern crate unicode_normalization;
87

9-
use finl_unicode::categories::CharacterCategories;
108
use std::borrow::Cow;
119
use std::fmt;
1210
use unicode_normalization::UnicodeNormalization;

src/tables.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//! Character Tables
2-
use finl_unicode::categories::CharacterCategories;
32
use std::cmp::Ordering;
43
use std::str::Chars;
54
use unicode_bidi::{bidi_class, BidiClass};

0 commit comments

Comments
 (0)