aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-04-03 10:09:11 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-04-03 10:09:11 +0100
commitc6c88070c4f25cd3710f03b7461cb277de8d3cc5 (patch)
treecfe6ec2fb43dcfb9a7f1c5698aaac0d17b2bf78a /Cargo.lock
parentb8e58d4a2f317fe300f13416858f33e860138c4d (diff)
parentb74449e9952846a8ea66c3507e52c24348d6dbc9 (diff)
Merge #1068
1068: profiling crate first draft r=matklad a=pasa I've made this first draft for #961 Could you look at it? Is this something what you are looking for? It has lack of tests. I can't figure out how to test stderr output in rust right now. Do you have some clues? Additionally I'm thinking about to implement procedural macros to annotate methods with this profiler. Will it be helpful? Co-authored-by: Sergey Parilin <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ddd508b0a..06117ceaf 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -931,6 +931,7 @@ dependencies = [
931 "ra_db 0.1.0", 931 "ra_db 0.1.0",
932 "ra_hir 0.1.0", 932 "ra_hir 0.1.0",
933 "ra_ide_api 0.1.0", 933 "ra_ide_api 0.1.0",
934 "ra_prof 0.1.0",
934 "ra_syntax 0.1.0", 935 "ra_syntax 0.1.0",
935 "tools 0.1.0", 936 "tools 0.1.0",
936] 937]
@@ -970,6 +971,7 @@ dependencies = [
970 "ra_arena 0.1.0", 971 "ra_arena 0.1.0",
971 "ra_db 0.1.0", 972 "ra_db 0.1.0",
972 "ra_mbe 0.1.0", 973 "ra_mbe 0.1.0",
974 "ra_prof 0.1.0",
973 "ra_syntax 0.1.0", 975 "ra_syntax 0.1.0",
974 "ra_tt 0.1.0", 976 "ra_tt 0.1.0",
975 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 977 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1018,6 +1020,7 @@ dependencies = [
1018 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 1020 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1019 "ra_arena 0.1.0", 1021 "ra_arena 0.1.0",
1020 "ra_ide_api 0.1.0", 1022 "ra_ide_api 0.1.0",
1023 "ra_prof 0.1.0",
1021 "ra_project_model 0.1.0", 1024 "ra_project_model 0.1.0",
1022 "ra_syntax 0.1.0", 1025 "ra_syntax 0.1.0",
1023 "ra_text_edit 0.1.0", 1026 "ra_text_edit 0.1.0",
@@ -1051,6 +1054,13 @@ dependencies = [
1051] 1054]
1052 1055
1053[[package]] 1056[[package]]
1057name = "ra_prof"
1058version = "0.1.0"
1059dependencies = [
1060 "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1061]
1062
1063[[package]]
1054name = "ra_project_model" 1064name = "ra_project_model"
1055version = "0.1.0" 1065version = "0.1.0"
1056dependencies = [ 1066dependencies = [