aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-31 18:09:43 +0000
committerAleksey Kladov <[email protected]>2019-01-31 20:23:30 +0000
commit40feacdeb90786b49ea9e0510ba22ff7af79e020 (patch)
tree294162ffb99480a5f150b9718675a954a4ac0f0a /Cargo.lock
parentad80a0c551458de7d27a98d182d7f559de04f291 (diff)
split macros across crates
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock14
1 files changed, 12 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b48721622..426f4af27 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -940,8 +940,9 @@ dependencies = [
940 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 940 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
941 "ra_arena 0.1.0", 941 "ra_arena 0.1.0",
942 "ra_db 0.1.0", 942 "ra_db 0.1.0",
943 "ra_macros 0.1.0", 943 "ra_mbe 0.1.0",
944 "ra_syntax 0.1.0", 944 "ra_syntax 0.1.0",
945 "ra_tt 0.1.0",
945 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 946 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
946 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 947 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
947 "test_utils 0.1.0", 948 "test_utils 0.1.0",
@@ -1019,9 +1020,10 @@ dependencies = [
1019] 1020]
1020 1021
1021[[package]] 1022[[package]]
1022name = "ra_macros" 1023name = "ra_mbe"
1023version = "0.1.0" 1024version = "0.1.0"
1024dependencies = [ 1025dependencies = [
1026 "ra_tt 0.1.0",
1025 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1027 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1026 "smol_str 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1028 "smol_str 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
1027] 1029]
@@ -1053,6 +1055,14 @@ dependencies = [
1053] 1055]
1054 1056
1055[[package]] 1057[[package]]
1058name = "ra_tt"
1059version = "0.1.0"
1060dependencies = [
1061 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
1062 "smol_str 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
1063]
1064
1065[[package]]
1056name = "ra_vfs" 1066name = "ra_vfs"
1057version = "0.1.0" 1067version = "0.1.0"
1058dependencies = [ 1068dependencies = [