Use git master branch of unicode-segmentation for now.
It includes some nice not-yet-released optimizations.
This commit is contained in:
parent
82df4d64bd
commit
3f0332b0ec
9
Cargo.lock
generated
9
Cargo.lock
generated
|
@ -11,7 +11,7 @@ dependencies = [
|
|||
"ropey",
|
||||
"smallvec 1.2.0",
|
||||
"time",
|
||||
"unicode-segmentation",
|
||||
"unicode-segmentation 1.6.0 (git+https://github.com/unicode-rs/unicode-segmentation.git)",
|
||||
"unicode-width",
|
||||
]
|
||||
|
||||
|
@ -46,7 +46,7 @@ name = "backend"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"ropey",
|
||||
"unicode-segmentation",
|
||||
"unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -517,6 +517,11 @@ dependencies = [
|
|||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "unicode-segmentation"
|
||||
version = "1.6.0"
|
||||
source = "git+https://github.com/unicode-rs/unicode-segmentation.git#fbba2a660b38dad86eebcd7fe73138c5cbfb9469"
|
||||
|
||||
[[package]]
|
||||
name = "unicode-segmentation"
|
||||
version = "1.6.0"
|
||||
|
|
|
@ -20,7 +20,8 @@ debug = true
|
|||
[dependencies]
|
||||
ropey = "1"
|
||||
# ropey = { git = "https://github.com/cessen/ropey", branch = "master" }
|
||||
unicode-segmentation = "1"
|
||||
# unicode-segmentation = "1"
|
||||
unicode-segmentation = { git = "https://github.com/unicode-rs/unicode-segmentation.git", branch = "master" }
|
||||
unicode-width = "0.1"
|
||||
clap = "2"
|
||||
smallvec = "1"
|
||||
|
|
Loading…
Reference in New Issue
Block a user