aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAndrea Pretto <[email protected]>2019-02-08 17:58:27 +0000
committerAndrea Pretto <[email protected]>2019-02-08 17:58:27 +0000
commit02dd0cfd8c7bf50cfb26c3c5178be5af4f3fdd25 (patch)
tree7fe910ed99307268a06e5668bb4401b6c6916fdb /Cargo.lock
parent12e3b4c70b5ef23b2fdfc197296d483680e125f9 (diff)
Refactor formatting code out of ra_ida_api_light into ra_fmt.
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 c330115b8..2a62a69e9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -900,8 +900,8 @@ version = "0.1.0"
900dependencies = [ 900dependencies = [
901 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 901 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
902 "ra_db 0.1.0", 902 "ra_db 0.1.0",
903 "ra_fmt 0.1.0",
903 "ra_hir 0.1.0", 904 "ra_hir 0.1.0",
904 "ra_ide_api_light 0.1.0",
905 "ra_syntax 0.1.0", 905 "ra_syntax 0.1.0",
906 "ra_text_edit 0.1.0", 906 "ra_text_edit 0.1.0",
907 "test_utils 0.1.0", 907 "test_utils 0.1.0",
@@ -933,6 +933,14 @@ dependencies = [
933] 933]
934 934
935[[package]] 935[[package]]
936name = "ra_fmt"
937version = "0.1.0"
938dependencies = [
939 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
940 "ra_syntax 0.1.0",
941]
942
943[[package]]
936name = "ra_hir" 944name = "ra_hir"
937version = "0.1.0" 945version = "0.1.0"
938dependencies = [ 946dependencies = [
@@ -986,6 +994,7 @@ dependencies = [
986 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 994 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
987 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 995 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
988 "proptest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 996 "proptest 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
997 "ra_fmt 0.1.0",
989 "ra_syntax 0.1.0", 998 "ra_syntax 0.1.0",
990 "ra_text_edit 0.1.0", 999 "ra_text_edit 0.1.0",
991 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", 1000 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",