aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-07-30 09:44:31 +0100
committerGitHub <[email protected]>2020-07-30 09:44:31 +0100
commit72ffd851dd5b0fcdf3aa072131ba11009878b4ae (patch)
tree4b35f683a6bfb70fa9e1db3b22371ebcde0e7d99 /Cargo.lock
parentc8573c418cb5240e0b60e93b15978b00e3ff0683 (diff)
parentf22af66c3763c4b2a9d16621473cb6979fb2f36d (diff)
Merge #5581
5581: Measure instructions in addition to time r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3e685b7f1..e63dcc530 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -841,6 +841,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
841checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" 841checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
842 842
843[[package]] 843[[package]]
844name = "perf-event"
845version = "0.4.3"
846source = "registry+https://github.com/rust-lang/crates.io-index"
847checksum = "0cb38a2f363560fb3cfcb47f28848b245a41c7e0d63e0b190918b712b6bf6803"
848dependencies = [
849 "libc",
850 "perf-event-open-sys",
851]
852
853[[package]]
854name = "perf-event-open-sys"
855version = "0.3.1"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "95db63e37862bc1b842135d2234ef9418f222cc660c6752f45e7cf9ddfb97f96"
858dependencies = [
859 "libc",
860]
861
862[[package]]
844name = "petgraph" 863name = "petgraph"
845version = "0.5.1" 864version = "0.5.1"
846source = "registry+https://github.com/rust-lang/crates.io-index" 865source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1126,6 +1145,7 @@ dependencies = [
1126 "cfg-if", 1145 "cfg-if",
1127 "libc", 1146 "libc",
1128 "once_cell", 1147 "once_cell",
1148 "perf-event",
1129 "ra_arena", 1149 "ra_arena",
1130] 1150]
1131 1151