aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-02-09 09:56:54 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-02-09 09:56:54 +0000
commit34398a8756b56c323d3b4b2ef32fbca32d88a105 (patch)
tree92ebf0ec790945116e152fce7a9e3cc749c6b8e0 /Cargo.lock
parent3e8351fb0607f8711749b00d80f68bf25de01a76 (diff)
parent02dd0cfd8c7bf50cfb26c3c5178be5af4f3fdd25 (diff)
Merge #766
766: Formatting code into ra_fmt r=matklad a=eulerdisk As discussed https://github.com/rust-analyzer/rust-analyzer/pull/762#discussion_r254905885 I did only move the code without other improvements. Co-authored-by: Andrea Pretto <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 10 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5ce4a8084..9c65b39f7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -902,8 +902,8 @@ version = "0.1.0"
902dependencies = [ 902dependencies = [
903 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 903 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
904 "ra_db 0.1.0", 904 "ra_db 0.1.0",
905 "ra_fmt 0.1.0",
905 "ra_hir 0.1.0", 906 "ra_hir 0.1.0",
906 "ra_ide_api_light 0.1.0",
907 "ra_syntax 0.1.0", 907 "ra_syntax 0.1.0",
908 "ra_text_edit 0.1.0", 908 "ra_text_edit 0.1.0",
909 "test_utils 0.1.0", 909 "test_utils 0.1.0",
@@ -935,6 +935,14 @@ dependencies = [
935] 935]
936 936
937[[package]] 937[[package]]
938name = "ra_fmt"
939version = "0.1.0"
940dependencies = [
941 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
942 "ra_syntax 0.1.0",
943]
944
945[[package]]
938name = "ra_hir" 946name = "ra_hir"
939version = "0.1.0" 947version = "0.1.0"
940dependencies = [ 948dependencies = [
@@ -988,6 +996,7 @@ dependencies = [
988 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 996 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
989 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 997 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
990 "proptest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 998 "proptest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
999 "ra_fmt 0.1.0",
991 "ra_syntax 0.1.0", 1000 "ra_syntax 0.1.0",
992 "ra_text_edit 0.1.0", 1001 "ra_text_edit 0.1.0",
993 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1002 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",