aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-10-10 01:43:23 +0200
committerJokler <jokler.contact@gmail.com>2017-10-11 15:41:32 +0200
commite2a3eff5cfb9308ec46e2ada0963ea3da02f846f (patch)
tree53b0c5d8348a9ae562dce73edced2d42da9d0ab6
parent44d50cecf46e379ef42381d435c1db13cdea1e82 (diff)
downloadfrippy-e2a3eff5cfb9308ec46e2ada0963ea3da02f846f.tar.gz
frippy-e2a3eff5cfb9308ec46e2ada0963ea3da02f846f.zip
Use own unicode_names library
The official library has not been updated since unicode 7.0 and the version we used was still on unicode 8.0.
-rw-r--r--Cargo.lock6
-rw-r--r--Cargo.toml2
2 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5ff705b..cb2fc71 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -9,7 +9,7 @@ dependencies = [
"reqwest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "unicode_names 0.1.7 (git+https://github.com/antifuchs/unicode_names?branch=fix-for-rust-1-10)",
+ "unicode_names 0.1.7 (git+https://github.com/Jokler/unicode_names?branch=update-to-latest-unicode)",
]
[[package]]
@@ -1070,7 +1070,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "unicode_names"
version = "0.1.7"
-source = "git+https://github.com/antifuchs/unicode_names?branch=fix-for-rust-1-10#65bde7973ab5e947be403ec66edf765c33eeaa61"
+source = "git+https://github.com/Jokler/unicode_names?branch=update-to-latest-unicode#6f3ad8f563cbd9a29c2857a451f1bf8cc0e105ee"
[[package]]
name = "unreachable"
@@ -1263,7 +1263,7 @@ dependencies = [
"checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
"checksum unicode-normalization 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "51ccda9ef9efa3f7ef5d91e8f9b83bbe6955f9bf86aec89d5cce2c874625920f"
"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
-"checksum unicode_names 0.1.7 (git+https://github.com/antifuchs/unicode_names?branch=fix-for-rust-1-10)" = "<none>"
+"checksum unicode_names 0.1.7 (git+https://github.com/Jokler/unicode_names?branch=update-to-latest-unicode)" = "<none>"
"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
"checksum url 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "eeb819346883532a271eb626deb43c4a1bb4c4dd47c519bd78137c3e72a4fe27"
"checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122"
diff --git a/Cargo.toml b/Cargo.toml
index 552d95c..396e737 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -26,6 +26,6 @@ lazy_static = "0.2.9"
serde = "1.0.15"
serde_json = "1.0.3"
-unicode_names = { git = 'https://github.com/antifuchs/unicode_names', branch = 'fix-for-rust-1-10' }
+unicode_names = { git = 'https://github.com/Jokler/unicode_names', branch = 'update-to-latest-unicode' }
clippy = {version = "*", optional = true}