Use git master branch of unicode-segmentation for now.

It includes some nice not-yet-released optimizations.
This commit is contained in:
Nathan Vegdahl 2020-02-16 22:27:52 +09:00
parent 82df4d64bd
commit 3f0332b0ec
2 changed files with 9 additions and 3 deletions

9
Cargo.lock generated
View File

@ -11,7 +11,7 @@ dependencies = [
"ropey", "ropey",
"smallvec 1.2.0", "smallvec 1.2.0",
"time", "time",
"unicode-segmentation", "unicode-segmentation 1.6.0 (git+https://github.com/unicode-rs/unicode-segmentation.git)",
"unicode-width", "unicode-width",
] ]
@ -46,7 +46,7 @@ name = "backend"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"ropey", "ropey",
"unicode-segmentation", "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]] [[package]]
@ -517,6 +517,11 @@ dependencies = [
"syn", "syn",
] ]
[[package]]
name = "unicode-segmentation"
version = "1.6.0"
source = "git+https://github.com/unicode-rs/unicode-segmentation.git#fbba2a660b38dad86eebcd7fe73138c5cbfb9469"
[[package]] [[package]]
name = "unicode-segmentation" name = "unicode-segmentation"
version = "1.6.0" version = "1.6.0"

View File

@ -20,7 +20,8 @@ debug = true
[dependencies] [dependencies]
ropey = "1" ropey = "1"
# ropey = { git = "https://github.com/cessen/ropey", branch = "master" } # 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" unicode-width = "0.1"
clap = "2" clap = "2"
smallvec = "1" smallvec = "1"