From 84ae8f1a78db5c8c41a567105b2530e32fdc5f1e Mon Sep 17 00:00:00 2001 From: Gary Yu Date: Sun, 16 Sep 2018 01:22:32 +0800 Subject: [PATCH] memmap: use official crate, instead of the explicit git url (#1532) --- Cargo.lock | 6 +++--- store/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 60640ba66..2e69ee27d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -813,7 +813,7 @@ dependencies = [ "grin_util 0.3.0", "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", "lmdb-zero 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", - "memmap 0.6.2 (git+https://github.com/danburkert/memmap-rs?tag=0.6.2)", + "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1208,7 +1208,7 @@ dependencies = [ [[package]] name = "memmap" version = "0.6.2" -source = "git+https://github.com/danburkert/memmap-rs?tag=0.6.2#b8b5411fcac76560a9dccafd512fa12044dd64b3" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2617,7 +2617,7 @@ dependencies = [ "checksum matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "835511bab37c34c47da5cb44844bea2cfde0236db0b506f90ea4224482c9774a" "checksum memchr 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a" "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" -"checksum memmap 0.6.2 (git+https://github.com/danburkert/memmap-rs?tag=0.6.2)" = "" +"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" "checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" "checksum mime 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "4b082692d3f6cf41b453af73839ce3dfc212c4411cbb2441dff80a716e38bd79" "checksum mime_guess 2.0.0-alpha.6 (registry+https://github.com/rust-lang/crates.io-index)" = "30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed" diff --git a/store/Cargo.toml b/store/Cargo.toml index 2606fb4fe..91279e1c5 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -13,7 +13,7 @@ libc = "0.2" failure = "0.1" failure_derive = "0.1" lmdb-zero = "0.4.4" -memmap = { git = "https://github.com/danburkert/memmap-rs", tag = "0.6.2" } +memmap = "0.6.2" serde = "1" serde_derive = "1" slog = { version = "~2.2", features = ["max_level_trace", "release_max_level_trace"] }