aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-03-22 20:22:37 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-03-22 20:22:37 +0000
commit15189bc7249fc68a1df0234721514b677a90a305 (patch)
tree59b6168c1c2c6cd376d443b8da3383fcf87b826b /Cargo.lock
parent3604f23e98d01fe9d89e5cdcf76a51cb9c1d6768 (diff)
parent4e6d0933cce60a883fc6b58d12523acf72d9756a (diff)
Merge #1021
1021: Wasm dependencies r=matklad a=detrumi As a first step towards running RA on WASM (see #1007), this tweaks the dependencies somewhat so that projects built using `wasm-pack` can use `ra_ide_api` as a dependency. There were two problems: - use of undeclared type or module `MmapInner` This error occurred because of the `memmap` crate, as a dependency of `fst` Solution: specify `default-features = false` for the `fst` package (see https://github.com/BurntSushi/fst/issues/70) - use of undeclared type or module `imp` This happened in the `wait-timeout` crate ([which uses `Command` under the hood](https://github.com/alexcrichton/wait-timeout/issues/18)), a dependency of `rusty-fork` which is a dependency of `proptest`. Solution: move `proptest` to dev-dependencies and add `#[cfg(test)]` to the `test_utils` crate. **Edit:** Oh, that causes trouble with resolving the import when running the tests. Hmm... Co-authored-by: Wilco Kusee <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 0 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index eafe8d64b..3c78346c1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -402,7 +402,6 @@ version = "0.3.3"
402source = "registry+https://github.com/rust-lang/crates.io-index" 402source = "registry+https://github.com/rust-lang/crates.io-index"
403dependencies = [ 403dependencies = [
404 "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 404 "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
405 "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
406] 405]
407 406
408[[package]] 407[[package]]
@@ -662,15 +661,6 @@ version = "2.2.0"
662source = "registry+https://github.com/rust-lang/crates.io-index" 661source = "registry+https://github.com/rust-lang/crates.io-index"
663 662
664[[package]] 663[[package]]
665name = "memmap"
666version = "0.6.2"
667source = "registry+https://github.com/rust-lang/crates.io-index"
668dependencies = [
669 "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)",
670 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
671]
672
673[[package]]
674name = "memoffset" 664name = "memoffset"
675version = "0.2.1" 665version = "0.2.1"
676source = "registry+https://github.com/rust-lang/crates.io-index" 666source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1976,7 +1966,6 @@ dependencies = [
1976"checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" 1966"checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43"
1977"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" 1967"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
1978"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" 1968"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
1979"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff"
1980"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" 1969"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3"
1981"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" 1970"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432"
1982"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" 1971"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40"