aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2020-04-04 09:09:36 +0100
committerEdwin Cheng <[email protected]>2020-04-09 18:18:47 +0100
commitf7f121d60d0f6b8f280e09397b14a8afd0a369c1 (patch)
tree5d239767123783ebf7f3a83b029d55a1c181c9e6 /Cargo.lock
parentdde9488559514e7d039cec9407e1f8627f665cd0 (diff)
Add dylib loading code
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock48
1 files changed, 48 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 34f05e83a..5f7c52e0a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -425,6 +425,17 @@ dependencies = [
425] 425]
426 426
427[[package]] 427[[package]]
428name = "goblin"
429version = "0.2.1"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "ddd5e3132801a1ac34ac53b97acde50c4685414dd2f291b9ea52afa6f07468c8"
432dependencies = [
433 "log",
434 "plain",
435 "scroll",
436]
437
438[[package]]
428name = "heck" 439name = "heck"
429version = "0.3.1" 440version = "0.3.1"
430source = "registry+https://github.com/rust-lang/crates.io-index" 441source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -587,6 +598,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
587checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0" 598checksum = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0"
588 599
589[[package]] 600[[package]]
601name = "libloading"
602version = "0.6.0"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "2c979a19ffb457f0273965c333053f3d586bf759bf7b683fbebc37f9a9ebedc4"
605dependencies = [
606 "winapi 0.3.8",
607]
608
609[[package]]
590name = "linked-hash-map" 610name = "linked-hash-map"
591version = "0.5.2" 611version = "0.5.2"
592source = "registry+https://github.com/rust-lang/crates.io-index" 612source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -826,6 +846,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
826checksum = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc" 846checksum = "3ad1f1b834a05d42dae330066e9699a173b28185b3bdc3dbf14ca239585de8cc"
827 847
828[[package]] 848[[package]]
849name = "plain"
850version = "0.2.3"
851source = "registry+https://github.com/rust-lang/crates.io-index"
852checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
853
854[[package]]
829name = "ppv-lite86" 855name = "ppv-lite86"
830version = "0.2.6" 856version = "0.2.6"
831source = "registry+https://github.com/rust-lang/crates.io-index" 857source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1081,6 +1107,8 @@ version = "0.1.0"
1081dependencies = [ 1107dependencies = [
1082 "cargo_metadata", 1108 "cargo_metadata",
1083 "difference", 1109 "difference",
1110 "goblin",
1111 "libloading",
1084 "ra_mbe", 1112 "ra_mbe",
1085 "ra_proc_macro", 1113 "ra_proc_macro",
1086 "ra_tt", 1114 "ra_tt",
@@ -1397,6 +1425,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1397checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1425checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1398 1426
1399[[package]] 1427[[package]]
1428name = "scroll"
1429version = "0.10.1"
1430source = "registry+https://github.com/rust-lang/crates.io-index"
1431checksum = "abb2332cb595d33f7edd5700f4cbf94892e680c7f0ae56adab58a35190b66cb1"
1432dependencies = [
1433 "scroll_derive",
1434]
1435
1436[[package]]
1437name = "scroll_derive"
1438version = "0.10.1"
1439source = "registry+https://github.com/rust-lang/crates.io-index"
1440checksum = "f8584eea9b9ff42825b46faf46a8c24d2cff13ec152fa2a50df788b87c07ee28"
1441dependencies = [
1442 "proc-macro2",
1443 "quote",
1444 "syn",
1445]
1446
1447[[package]]
1400name = "semver" 1448name = "semver"
1401version = "0.9.0" 1449version = "0.9.0"
1402source = "registry+https://github.com/rust-lang/crates.io-index" 1450source = "registry+https://github.com/rust-lang/crates.io-index"