pyroscope 0.5.9-x86_64-darwin → 0.5.10-x86_64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/ext/rbspy/Cargo.lock +188 -128
 - data/ext/rbspy/src/lib.rs +1 -1
 - data/ext/thread_id/Cargo.lock +28 -28
 - data/lib/pyroscope/version.rb +1 -1
 - data/lib/rbspy/rbspy.bundle +0 -0
 - data/lib/thread_id/thread_id.bundle +0 -0
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: e1acc42c13ab64bc7aa350b28b9b1e09d00e7e77044febe9e7993d9911ea3f1d
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 74de8f80b18764301a7defe31db26d79bb1c60144e347272fe38cfd1e111a3cf
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 6519d9afb0f5c79a156d992e7487614e8d74aac5c331001c4e9e908372ae893e14339d7ffbfaff47714b11adf9913a460c0f48af319c7577d12dc2a2549072c8
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 7a0319646b7c4df3417bf263d091af204c09210e89cf9c2815692ef94870d216885de2edacb1eb4378adb2fde70370bd7e29122f6d601b5318329cb8f6c6520c
         
     | 
    
        data/ext/rbspy/Cargo.lock
    CHANGED
    
    | 
         @@ -88,9 +88,9 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 
     | 
|
| 
       88 
88 
     | 
    
         | 
| 
       89 
89 
     | 
    
         
             
            [[package]]
         
     | 
| 
       90 
90 
     | 
    
         
             
            name = "async-channel"
         
     | 
| 
       91 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 91 
     | 
    
         
            +
            version = "1.9.0"
         
     | 
| 
       92 
92 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       93 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 93 
     | 
    
         
            +
            checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
         
     | 
| 
       94 
94 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       95 
95 
     | 
    
         
             
             "concurrent-queue",
         
     | 
| 
       96 
96 
     | 
    
         
             
             "event-listener",
         
     | 
| 
         @@ -135,6 +135,21 @@ version = "1.1.0" 
     | 
|
| 
       135 
135 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       136 
136 
     | 
    
         
             
            checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
         
     | 
| 
       137 
137 
     | 
    
         | 
| 
      
 138 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 139 
     | 
    
         
            +
            name = "backtrace"
         
     | 
| 
      
 140 
     | 
    
         
            +
            version = "0.3.68"
         
     | 
| 
      
 141 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 142 
     | 
    
         
            +
            checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
         
     | 
| 
      
 143 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 144 
     | 
    
         
            +
             "addr2line",
         
     | 
| 
      
 145 
     | 
    
         
            +
             "cc",
         
     | 
| 
      
 146 
     | 
    
         
            +
             "cfg-if",
         
     | 
| 
      
 147 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 148 
     | 
    
         
            +
             "miniz_oxide",
         
     | 
| 
      
 149 
     | 
    
         
            +
             "object",
         
     | 
| 
      
 150 
     | 
    
         
            +
             "rustc-demangle",
         
     | 
| 
      
 151 
     | 
    
         
            +
            ]
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
       138 
153 
     | 
    
         
             
            [[package]]
         
     | 
| 
       139 
154 
     | 
    
         
             
            name = "base64"
         
     | 
| 
       140 
155 
     | 
    
         
             
            version = "0.21.2"
         
     | 
| 
         @@ -166,7 +181,7 @@ version = "0.59.2" 
     | 
|
| 
       166 
181 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       167 
182 
     | 
    
         
             
            checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
         
     | 
| 
       168 
183 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       169 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 184 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       170 
185 
     | 
    
         
             
             "cexpr",
         
     | 
| 
       171 
186 
     | 
    
         
             
             "clang-sys",
         
     | 
| 
       172 
187 
     | 
    
         
             
             "lazy_static 1.4.0",
         
     | 
| 
         @@ -185,7 +200,7 @@ version = "0.60.1" 
     | 
|
| 
       185 
200 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       186 
201 
     | 
    
         
             
            checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
         
     | 
| 
       187 
202 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       188 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 203 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       189 
204 
     | 
    
         
             
             "cexpr",
         
     | 
| 
       190 
205 
     | 
    
         
             
             "clang-sys",
         
     | 
| 
       191 
206 
     | 
    
         
             
             "clap 3.2.25",
         
     | 
| 
         @@ -208,7 +223,7 @@ version = "0.64.0" 
     | 
|
| 
       208 
223 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       209 
224 
     | 
    
         
             
            checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
         
     | 
| 
       210 
225 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       211 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 226 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       212 
227 
     | 
    
         
             
             "cexpr",
         
     | 
| 
       213 
228 
     | 
    
         
             
             "clang-sys",
         
     | 
| 
       214 
229 
     | 
    
         
             
             "lazy_static 1.4.0",
         
     | 
| 
         @@ -228,6 +243,12 @@ version = "1.3.2" 
     | 
|
| 
       228 
243 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       229 
244 
     | 
    
         
             
            checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
         
     | 
| 
       230 
245 
     | 
    
         | 
| 
      
 246 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 247 
     | 
    
         
            +
            name = "bitflags"
         
     | 
| 
      
 248 
     | 
    
         
            +
            version = "2.3.3"
         
     | 
| 
      
 249 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 250 
     | 
    
         
            +
            checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
         
     | 
| 
      
 251 
     | 
    
         
            +
             
     | 
| 
       231 
252 
     | 
    
         
             
            [[package]]
         
     | 
| 
       232 
253 
     | 
    
         
             
            name = "blocking"
         
     | 
| 
       233 
254 
     | 
    
         
             
            version = "1.3.1"
         
     | 
| 
         @@ -341,7 +362,7 @@ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 
     | 
|
| 
       341 
362 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       342 
363 
     | 
    
         
             
             "ansi_term",
         
     | 
| 
       343 
364 
     | 
    
         
             
             "atty",
         
     | 
| 
       344 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 365 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       345 
366 
     | 
    
         
             
             "strsim 0.8.0",
         
     | 
| 
       346 
367 
     | 
    
         
             
             "textwrap 0.11.0",
         
     | 
| 
       347 
368 
     | 
    
         
             
             "unicode-width",
         
     | 
| 
         @@ -355,7 +376,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 
     | 
|
| 
       355 
376 
     | 
    
         
             
            checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
         
     | 
| 
       356 
377 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       357 
378 
     | 
    
         
             
             "atty",
         
     | 
| 
       358 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 379 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       359 
380 
     | 
    
         
             
             "clap_derive",
         
     | 
| 
       360 
381 
     | 
    
         
             
             "clap_lex",
         
     | 
| 
       361 
382 
     | 
    
         
             
             "indexmap",
         
     | 
| 
         @@ -404,9 +425,9 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 
     | 
|
| 
       404 
425 
     | 
    
         | 
| 
       405 
426 
     | 
    
         
             
            [[package]]
         
     | 
| 
       406 
427 
     | 
    
         
             
            name = "cpp_demangle"
         
     | 
| 
       407 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 428 
     | 
    
         
            +
            version = "0.4.2"
         
     | 
| 
       408 
429 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       409 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 430 
     | 
    
         
            +
            checksum = "ee34052ee3d93d6d8f3e6f81d85c47921f6653a19a7b70e939e3e602d893a674"
         
     | 
| 
       410 
431 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       411 
432 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       412 
433 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -662,6 +683,17 @@ dependencies = [ 
     | 
|
| 
       662 
683 
     | 
    
         
             
             "waker-fn",
         
     | 
| 
       663 
684 
     | 
    
         
             
            ]
         
     | 
| 
       664 
685 
     | 
    
         | 
| 
      
 686 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 687 
     | 
    
         
            +
            name = "futures-macro"
         
     | 
| 
      
 688 
     | 
    
         
            +
            version = "0.3.28"
         
     | 
| 
      
 689 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 690 
     | 
    
         
            +
            checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
         
     | 
| 
      
 691 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 692 
     | 
    
         
            +
             "proc-macro2",
         
     | 
| 
      
 693 
     | 
    
         
            +
             "quote",
         
     | 
| 
      
 694 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
      
 695 
     | 
    
         
            +
            ]
         
     | 
| 
      
 696 
     | 
    
         
            +
             
     | 
| 
       665 
697 
     | 
    
         
             
            [[package]]
         
     | 
| 
       666 
698 
     | 
    
         
             
            name = "futures-sink"
         
     | 
| 
       667 
699 
     | 
    
         
             
            version = "0.3.28"
         
     | 
| 
         @@ -682,6 +714,7 @@ checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 
     | 
|
| 
       682 
714 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       683 
715 
     | 
    
         
             
             "futures-core",
         
     | 
| 
       684 
716 
     | 
    
         
             
             "futures-io",
         
     | 
| 
      
 717 
     | 
    
         
            +
             "futures-macro",
         
     | 
| 
       685 
718 
     | 
    
         
             
             "futures-task",
         
     | 
| 
       686 
719 
     | 
    
         
             
             "memchr",
         
     | 
| 
       687 
720 
     | 
    
         
             
             "pin-project-lite",
         
     | 
| 
         @@ -729,9 +762,9 @@ dependencies = [ 
     | 
|
| 
       729 
762 
     | 
    
         | 
| 
       730 
763 
     | 
    
         
             
            [[package]]
         
     | 
| 
       731 
764 
     | 
    
         
             
            name = "h2"
         
     | 
| 
       732 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 765 
     | 
    
         
            +
            version = "0.3.20"
         
     | 
| 
       733 
766 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       734 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 767 
     | 
    
         
            +
            checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
         
     | 
| 
       735 
768 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       736 
769 
     | 
    
         
             
             "bytes",
         
     | 
| 
       737 
770 
     | 
    
         
             
             "fnv",
         
     | 
| 
         @@ -778,18 +811,9 @@ dependencies = [ 
     | 
|
| 
       778 
811 
     | 
    
         | 
| 
       779 
812 
     | 
    
         
             
            [[package]]
         
     | 
| 
       780 
813 
     | 
    
         
             
            name = "hermit-abi"
         
     | 
| 
       781 
     | 
    
         
            -
            version = "0.2 
     | 
| 
       782 
     | 
    
         
            -
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       783 
     | 
    
         
            -
            checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
         
     | 
| 
       784 
     | 
    
         
            -
            dependencies = [
         
     | 
| 
       785 
     | 
    
         
            -
             "libc",
         
     | 
| 
       786 
     | 
    
         
            -
            ]
         
     | 
| 
       787 
     | 
    
         
            -
             
     | 
| 
       788 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       789 
     | 
    
         
            -
            name = "hermit-abi"
         
     | 
| 
       790 
     | 
    
         
            -
            version = "0.3.1"
         
     | 
| 
      
 814 
     | 
    
         
            +
            version = "0.3.2"
         
     | 
| 
       791 
815 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       792 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 816 
     | 
    
         
            +
            checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
         
     | 
| 
       793 
817 
     | 
    
         | 
| 
       794 
818 
     | 
    
         
             
            [[package]]
         
     | 
| 
       795 
819 
     | 
    
         
             
            name = "http"
         
     | 
| 
         @@ -842,9 +866,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 
     | 
|
| 
       842 
866 
     | 
    
         | 
| 
       843 
867 
     | 
    
         
             
            [[package]]
         
     | 
| 
       844 
868 
     | 
    
         
             
            name = "hyper"
         
     | 
| 
       845 
     | 
    
         
            -
            version = "0.14. 
     | 
| 
      
 869 
     | 
    
         
            +
            version = "0.14.27"
         
     | 
| 
       846 
870 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       847 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 871 
     | 
    
         
            +
            checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
         
     | 
| 
       848 
872 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       849 
873 
     | 
    
         
             
             "bytes",
         
     | 
| 
       850 
874 
     | 
    
         
             
             "futures-channel",
         
     | 
| 
         @@ -866,10 +890,11 @@ dependencies = [ 
     | 
|
| 
       866 
890 
     | 
    
         | 
| 
       867 
891 
     | 
    
         
             
            [[package]]
         
     | 
| 
       868 
892 
     | 
    
         
             
            name = "hyper-rustls"
         
     | 
| 
       869 
     | 
    
         
            -
            version = "0.24. 
     | 
| 
      
 893 
     | 
    
         
            +
            version = "0.24.1"
         
     | 
| 
       870 
894 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       871 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 895 
     | 
    
         
            +
            checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
         
     | 
| 
       872 
896 
     | 
    
         
             
            dependencies = [
         
     | 
| 
      
 897 
     | 
    
         
            +
             "futures-util",
         
     | 
| 
       873 
898 
     | 
    
         
             
             "http",
         
     | 
| 
       874 
899 
     | 
    
         
             
             "hyper",
         
     | 
| 
       875 
900 
     | 
    
         
             
             "rustls",
         
     | 
| 
         @@ -985,26 +1010,25 @@ version = "1.0.11" 
     | 
|
| 
       985 
1010 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       986 
1011 
     | 
    
         
             
            checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
         
     | 
| 
       987 
1012 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       988 
     | 
    
         
            -
             "hermit-abi 0.3. 
     | 
| 
      
 1013 
     | 
    
         
            +
             "hermit-abi 0.3.2",
         
     | 
| 
       989 
1014 
     | 
    
         
             
             "libc",
         
     | 
| 
       990 
1015 
     | 
    
         
             
             "windows-sys",
         
     | 
| 
       991 
1016 
     | 
    
         
             
            ]
         
     | 
| 
       992 
1017 
     | 
    
         | 
| 
       993 
1018 
     | 
    
         
             
            [[package]]
         
     | 
| 
       994 
1019 
     | 
    
         
             
            name = "ipnet"
         
     | 
| 
       995 
     | 
    
         
            -
            version = "2. 
     | 
| 
      
 1020 
     | 
    
         
            +
            version = "2.8.0"
         
     | 
| 
       996 
1021 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       997 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1022 
     | 
    
         
            +
            checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
         
     | 
| 
       998 
1023 
     | 
    
         | 
| 
       999 
1024 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1000 
1025 
     | 
    
         
             
            name = "is-terminal"
         
     | 
| 
       1001 
     | 
    
         
            -
            version = "0.4. 
     | 
| 
      
 1026 
     | 
    
         
            +
            version = "0.4.9"
         
     | 
| 
       1002 
1027 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1003 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1028 
     | 
    
         
            +
            checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
         
     | 
| 
       1004 
1029 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1005 
     | 
    
         
            -
             "hermit-abi 0.3. 
     | 
| 
       1006 
     | 
    
         
            -
             " 
     | 
| 
       1007 
     | 
    
         
            -
             "rustix",
         
     | 
| 
      
 1030 
     | 
    
         
            +
             "hermit-abi 0.3.2",
         
     | 
| 
      
 1031 
     | 
    
         
            +
             "rustix 0.38.3",
         
     | 
| 
       1008 
1032 
     | 
    
         
             
             "windows-sys",
         
     | 
| 
       1009 
1033 
     | 
    
         
             
            ]
         
     | 
| 
       1010 
1034 
     | 
    
         | 
| 
         @@ -1019,9 +1043,9 @@ dependencies = [ 
     | 
|
| 
       1019 
1043 
     | 
    
         | 
| 
       1020 
1044 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1021 
1045 
     | 
    
         
             
            name = "itoa"
         
     | 
| 
       1022 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1046 
     | 
    
         
            +
            version = "1.0.8"
         
     | 
| 
       1023 
1047 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1024 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1048 
     | 
    
         
            +
            checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
         
     | 
| 
       1025 
1049 
     | 
    
         | 
| 
       1026 
1050 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1027 
1051 
     | 
    
         
             
            name = "js-sys"
         
     | 
| 
         @@ -1058,9 +1082,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 
     | 
|
| 
       1058 
1082 
     | 
    
         | 
| 
       1059 
1083 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1060 
1084 
     | 
    
         
             
            name = "libc"
         
     | 
| 
       1061 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 1085 
     | 
    
         
            +
            version = "0.2.147"
         
     | 
| 
       1062 
1086 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1063 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1087 
     | 
    
         
            +
            checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
         
     | 
| 
       1064 
1088 
     | 
    
         | 
| 
       1065 
1089 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1066 
1090 
     | 
    
         
             
            name = "libflate"
         
     | 
| 
         @@ -1120,6 +1144,12 @@ version = "0.3.8" 
     | 
|
| 
       1120 
1144 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1121 
1145 
     | 
    
         
             
            checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
         
     | 
| 
       1122 
1146 
     | 
    
         | 
| 
      
 1147 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1148 
     | 
    
         
            +
            name = "linux-raw-sys"
         
     | 
| 
      
 1149 
     | 
    
         
            +
            version = "0.4.3"
         
     | 
| 
      
 1150 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1151 
     | 
    
         
            +
            checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
         
     | 
| 
      
 1152 
     | 
    
         
            +
             
     | 
| 
       1123 
1153 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1124 
1154 
     | 
    
         
             
            name = "lock_api"
         
     | 
| 
       1125 
1155 
     | 
    
         
             
            version = "0.4.10"
         
     | 
| 
         @@ -1242,7 +1272,7 @@ version = "0.26.2" 
     | 
|
| 
       1242 
1272 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1243 
1273 
     | 
    
         
             
            checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
         
     | 
| 
       1244 
1274 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1245 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 1275 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       1246 
1276 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       1247 
1277 
     | 
    
         
             
             "libc",
         
     | 
| 
       1248 
1278 
     | 
    
         
             
             "memoffset",
         
     | 
| 
         @@ -1281,11 +1311,11 @@ dependencies = [ 
     | 
|
| 
       1281 
1311 
     | 
    
         | 
| 
       1282 
1312 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1283 
1313 
     | 
    
         
             
            name = "num_cpus"
         
     | 
| 
       1284 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 1314 
     | 
    
         
            +
            version = "1.16.0"
         
     | 
| 
       1285 
1315 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1286 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1316 
     | 
    
         
            +
            checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
         
     | 
| 
       1287 
1317 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1288 
     | 
    
         
            -
             "hermit-abi 0.2 
     | 
| 
      
 1318 
     | 
    
         
            +
             "hermit-abi 0.3.2",
         
     | 
| 
       1289 
1319 
     | 
    
         
             
             "libc",
         
     | 
| 
       1290 
1320 
     | 
    
         
             
            ]
         
     | 
| 
       1291 
1321 
     | 
    
         | 
| 
         @@ -1351,9 +1381,9 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 
     | 
|
| 
       1351 
1381 
     | 
    
         | 
| 
       1352 
1382 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1353 
1383 
     | 
    
         
             
            name = "pin-project-lite"
         
     | 
| 
       1354 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 1384 
     | 
    
         
            +
            version = "0.2.10"
         
     | 
| 
       1355 
1385 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1356 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1386 
     | 
    
         
            +
            checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
         
     | 
| 
       1357 
1387 
     | 
    
         | 
| 
       1358 
1388 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1359 
1389 
     | 
    
         
             
            name = "pin-utils"
         
     | 
| 
         @@ -1409,9 +1439,9 @@ dependencies = [ 
     | 
|
| 
       1409 
1439 
     | 
    
         | 
| 
       1410 
1440 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1411 
1441 
     | 
    
         
             
            name = "proc-macro2"
         
     | 
| 
       1412 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1442 
     | 
    
         
            +
            version = "1.0.64"
         
     | 
| 
       1413 
1443 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1414 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1444 
     | 
    
         
            +
            checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
         
     | 
| 
       1415 
1445 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1416 
1446 
     | 
    
         
             
             "unicode-ident",
         
     | 
| 
       1417 
1447 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1469,6 +1499,43 @@ dependencies = [ 
     | 
|
| 
       1469 
1499 
     | 
    
         
             
             "winapi",
         
     | 
| 
       1470 
1500 
     | 
    
         
             
            ]
         
     | 
| 
       1471 
1501 
     | 
    
         | 
| 
      
 1502 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1503 
     | 
    
         
            +
            name = "pyroscope-rbspy-oncpu"
         
     | 
| 
      
 1504 
     | 
    
         
            +
            version = "0.17.0"
         
     | 
| 
      
 1505 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1506 
     | 
    
         
            +
            checksum = "bab7a460ac334ed5b24ada78f1c8e024fdf95ba1f7ef0fdb205e5a5f3331785d"
         
     | 
| 
      
 1507 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1508 
     | 
    
         
            +
             "anyhow",
         
     | 
| 
      
 1509 
     | 
    
         
            +
             "chrono",
         
     | 
| 
      
 1510 
     | 
    
         
            +
             "clap 3.2.25",
         
     | 
| 
      
 1511 
     | 
    
         
            +
             "ctrlc",
         
     | 
| 
      
 1512 
     | 
    
         
            +
             "directories",
         
     | 
| 
      
 1513 
     | 
    
         
            +
             "env_logger 0.10.0",
         
     | 
| 
      
 1514 
     | 
    
         
            +
             "flate2",
         
     | 
| 
      
 1515 
     | 
    
         
            +
             "goblin",
         
     | 
| 
      
 1516 
     | 
    
         
            +
             "inferno",
         
     | 
| 
      
 1517 
     | 
    
         
            +
             "lazy_static 1.4.0",
         
     | 
| 
      
 1518 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 1519 
     | 
    
         
            +
             "libproc 0.13.0",
         
     | 
| 
      
 1520 
     | 
    
         
            +
             "log",
         
     | 
| 
      
 1521 
     | 
    
         
            +
             "memmap2",
         
     | 
| 
      
 1522 
     | 
    
         
            +
             "nix",
         
     | 
| 
      
 1523 
     | 
    
         
            +
             "proc-maps",
         
     | 
| 
      
 1524 
     | 
    
         
            +
             "prost",
         
     | 
| 
      
 1525 
     | 
    
         
            +
             "rand",
         
     | 
| 
      
 1526 
     | 
    
         
            +
             "rbspy-ruby-structs",
         
     | 
| 
      
 1527 
     | 
    
         
            +
             "remoteprocess",
         
     | 
| 
      
 1528 
     | 
    
         
            +
             "semver",
         
     | 
| 
      
 1529 
     | 
    
         
            +
             "serde",
         
     | 
| 
      
 1530 
     | 
    
         
            +
             "serde_derive",
         
     | 
| 
      
 1531 
     | 
    
         
            +
             "serde_json",
         
     | 
| 
      
 1532 
     | 
    
         
            +
             "spytools",
         
     | 
| 
      
 1533 
     | 
    
         
            +
             "tempfile",
         
     | 
| 
      
 1534 
     | 
    
         
            +
             "term_size",
         
     | 
| 
      
 1535 
     | 
    
         
            +
             "thiserror",
         
     | 
| 
      
 1536 
     | 
    
         
            +
             "winapi",
         
     | 
| 
      
 1537 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1538 
     | 
    
         
            +
             
     | 
| 
       1472 
1539 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1473 
1540 
     | 
    
         
             
            name = "pyroscope_rbspy"
         
     | 
| 
       1474 
1541 
     | 
    
         
             
            version = "0.2.5"
         
     | 
| 
         @@ -1477,7 +1544,7 @@ dependencies = [ 
     | 
|
| 
       1477 
1544 
     | 
    
         
             
             "inferno",
         
     | 
| 
       1478 
1545 
     | 
    
         
             
             "log",
         
     | 
| 
       1479 
1546 
     | 
    
         
             
             "pyroscope",
         
     | 
| 
       1480 
     | 
    
         
            -
             "rbspy 
     | 
| 
      
 1547 
     | 
    
         
            +
             "pyroscope-rbspy-oncpu",
         
     | 
| 
       1481 
1548 
     | 
    
         
             
             "thiserror",
         
     | 
| 
       1482 
1549 
     | 
    
         
             
            ]
         
     | 
| 
       1483 
1550 
     | 
    
         | 
| 
         @@ -1498,9 +1565,9 @@ dependencies = [ 
     | 
|
| 
       1498 
1565 
     | 
    
         | 
| 
       1499 
1566 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1500 
1567 
     | 
    
         
             
            name = "quote"
         
     | 
| 
       1501 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1568 
     | 
    
         
            +
            version = "1.0.29"
         
     | 
| 
       1502 
1569 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1503 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1570 
     | 
    
         
            +
            checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
         
     | 
| 
       1504 
1571 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1505 
1572 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1506 
1573 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -1548,44 +1615,11 @@ dependencies = [ 
     | 
|
| 
       1548 
1615 
     | 
    
         
             
             "pyroscope_rbspy",
         
     | 
| 
       1549 
1616 
     | 
    
         
             
            ]
         
     | 
| 
       1550 
1617 
     | 
    
         | 
| 
       1551 
     | 
    
         
            -
            [[package]]
         
     | 
| 
       1552 
     | 
    
         
            -
            name = "rbspy"
         
     | 
| 
       1553 
     | 
    
         
            -
            version = "0.17.0"
         
     | 
| 
       1554 
     | 
    
         
            -
            dependencies = [
         
     | 
| 
       1555 
     | 
    
         
            -
             "anyhow",
         
     | 
| 
       1556 
     | 
    
         
            -
             "chrono",
         
     | 
| 
       1557 
     | 
    
         
            -
             "clap 3.2.25",
         
     | 
| 
       1558 
     | 
    
         
            -
             "ctrlc",
         
     | 
| 
       1559 
     | 
    
         
            -
             "directories",
         
     | 
| 
       1560 
     | 
    
         
            -
             "env_logger 0.10.0",
         
     | 
| 
       1561 
     | 
    
         
            -
             "flate2",
         
     | 
| 
       1562 
     | 
    
         
            -
             "goblin",
         
     | 
| 
       1563 
     | 
    
         
            -
             "inferno",
         
     | 
| 
       1564 
     | 
    
         
            -
             "lazy_static 1.4.0",
         
     | 
| 
       1565 
     | 
    
         
            -
             "libc",
         
     | 
| 
       1566 
     | 
    
         
            -
             "libproc 0.13.0",
         
     | 
| 
       1567 
     | 
    
         
            -
             "log",
         
     | 
| 
       1568 
     | 
    
         
            -
             "memmap2",
         
     | 
| 
       1569 
     | 
    
         
            -
             "nix",
         
     | 
| 
       1570 
     | 
    
         
            -
             "proc-maps",
         
     | 
| 
       1571 
     | 
    
         
            -
             "prost",
         
     | 
| 
       1572 
     | 
    
         
            -
             "rand",
         
     | 
| 
       1573 
     | 
    
         
            -
             "rbspy-ruby-structs",
         
     | 
| 
       1574 
     | 
    
         
            -
             "remoteprocess",
         
     | 
| 
       1575 
     | 
    
         
            -
             "semver",
         
     | 
| 
       1576 
     | 
    
         
            -
             "serde",
         
     | 
| 
       1577 
     | 
    
         
            -
             "serde_derive",
         
     | 
| 
       1578 
     | 
    
         
            -
             "serde_json",
         
     | 
| 
       1579 
     | 
    
         
            -
             "spytools",
         
     | 
| 
       1580 
     | 
    
         
            -
             "tempfile",
         
     | 
| 
       1581 
     | 
    
         
            -
             "term_size",
         
     | 
| 
       1582 
     | 
    
         
            -
             "thiserror",
         
     | 
| 
       1583 
     | 
    
         
            -
             "winapi",
         
     | 
| 
       1584 
     | 
    
         
            -
            ]
         
     | 
| 
       1585 
     | 
    
         
            -
             
     | 
| 
       1586 
1618 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1587 
1619 
     | 
    
         
             
            name = "rbspy-ruby-structs"
         
     | 
| 
       1588 
1620 
     | 
    
         
             
            version = "0.17.0"
         
     | 
| 
      
 1621 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1622 
     | 
    
         
            +
            checksum = "90afb0dd7bf12f7cc75eb2bd7f5d33955ad7670176062158c4e56e245e55d1d2"
         
     | 
| 
       1589 
1623 
     | 
    
         | 
| 
       1590 
1624 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1591 
1625 
     | 
    
         
             
            name = "read-process-memory"
         
     | 
| 
         @@ -1605,7 +1639,7 @@ version = "0.2.16" 
     | 
|
| 
       1605 
1639 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1606 
1640 
     | 
    
         
             
            checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
         
     | 
| 
       1607 
1641 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1608 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 1642 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       1609 
1643 
     | 
    
         
             
            ]
         
     | 
| 
       1610 
1644 
     | 
    
         | 
| 
       1611 
1645 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -1614,7 +1648,7 @@ version = "0.3.5" 
     | 
|
| 
       1614 
1648 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1615 
1649 
     | 
    
         
             
            checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
         
     | 
| 
       1616 
1650 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1617 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 1651 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       1618 
1652 
     | 
    
         
             
            ]
         
     | 
| 
       1619 
1653 
     | 
    
         | 
| 
       1620 
1654 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -1630,9 +1664,21 @@ dependencies = [ 
     | 
|
| 
       1630 
1664 
     | 
    
         | 
| 
       1631 
1665 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1632 
1666 
     | 
    
         
             
            name = "regex"
         
     | 
| 
       1633 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 1667 
     | 
    
         
            +
            version = "1.9.1"
         
     | 
| 
       1634 
1668 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1635 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1669 
     | 
    
         
            +
            checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
         
     | 
| 
      
 1670 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1671 
     | 
    
         
            +
             "aho-corasick",
         
     | 
| 
      
 1672 
     | 
    
         
            +
             "memchr",
         
     | 
| 
      
 1673 
     | 
    
         
            +
             "regex-automata",
         
     | 
| 
      
 1674 
     | 
    
         
            +
             "regex-syntax",
         
     | 
| 
      
 1675 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1676 
     | 
    
         
            +
             
     | 
| 
      
 1677 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1678 
     | 
    
         
            +
            name = "regex-automata"
         
     | 
| 
      
 1679 
     | 
    
         
            +
            version = "0.3.2"
         
     | 
| 
      
 1680 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1681 
     | 
    
         
            +
            checksum = "83d3daa6976cffb758ec878f108ba0e062a45b2d6ca3a2cca965338855476caf"
         
     | 
| 
       1636 
1682 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1637 
1683 
     | 
    
         
             
             "aho-corasick",
         
     | 
| 
       1638 
1684 
     | 
    
         
             
             "memchr",
         
     | 
| 
         @@ -1641,9 +1687,9 @@ dependencies = [ 
     | 
|
| 
       1641 
1687 
     | 
    
         | 
| 
       1642 
1688 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1643 
1689 
     | 
    
         
             
            name = "regex-syntax"
         
     | 
| 
       1644 
     | 
    
         
            -
            version = "0.7. 
     | 
| 
      
 1690 
     | 
    
         
            +
            version = "0.7.3"
         
     | 
| 
       1645 
1691 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1646 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1692 
     | 
    
         
            +
            checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
         
     | 
| 
       1647 
1693 
     | 
    
         | 
| 
       1648 
1694 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1649 
1695 
     | 
    
         
             
            name = "remoteprocess"
         
     | 
| 
         @@ -1760,23 +1806,36 @@ dependencies = [ 
     | 
|
| 
       1760 
1806 
     | 
    
         | 
| 
       1761 
1807 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1762 
1808 
     | 
    
         
             
            name = "rustix"
         
     | 
| 
       1763 
     | 
    
         
            -
            version = "0.37. 
     | 
| 
      
 1809 
     | 
    
         
            +
            version = "0.37.23"
         
     | 
| 
       1764 
1810 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1765 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1811 
     | 
    
         
            +
            checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
         
     | 
| 
       1766 
1812 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1767 
     | 
    
         
            -
             "bitflags",
         
     | 
| 
      
 1813 
     | 
    
         
            +
             "bitflags 1.3.2",
         
     | 
| 
       1768 
1814 
     | 
    
         
             
             "errno 0.3.1",
         
     | 
| 
       1769 
1815 
     | 
    
         
             
             "io-lifetimes",
         
     | 
| 
       1770 
1816 
     | 
    
         
             
             "libc",
         
     | 
| 
       1771 
     | 
    
         
            -
             "linux-raw-sys",
         
     | 
| 
      
 1817 
     | 
    
         
            +
             "linux-raw-sys 0.3.8",
         
     | 
| 
      
 1818 
     | 
    
         
            +
             "windows-sys",
         
     | 
| 
      
 1819 
     | 
    
         
            +
            ]
         
     | 
| 
      
 1820 
     | 
    
         
            +
             
     | 
| 
      
 1821 
     | 
    
         
            +
            [[package]]
         
     | 
| 
      
 1822 
     | 
    
         
            +
            name = "rustix"
         
     | 
| 
      
 1823 
     | 
    
         
            +
            version = "0.38.3"
         
     | 
| 
      
 1824 
     | 
    
         
            +
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
      
 1825 
     | 
    
         
            +
            checksum = "ac5ffa1efe7548069688cd7028f32591853cd7b5b756d41bcffd2353e4fc75b4"
         
     | 
| 
      
 1826 
     | 
    
         
            +
            dependencies = [
         
     | 
| 
      
 1827 
     | 
    
         
            +
             "bitflags 2.3.3",
         
     | 
| 
      
 1828 
     | 
    
         
            +
             "errno 0.3.1",
         
     | 
| 
      
 1829 
     | 
    
         
            +
             "libc",
         
     | 
| 
      
 1830 
     | 
    
         
            +
             "linux-raw-sys 0.4.3",
         
     | 
| 
       1772 
1831 
     | 
    
         
             
             "windows-sys",
         
     | 
| 
       1773 
1832 
     | 
    
         
             
            ]
         
     | 
| 
       1774 
1833 
     | 
    
         | 
| 
       1775 
1834 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1776 
1835 
     | 
    
         
             
            name = "rustls"
         
     | 
| 
       1777 
     | 
    
         
            -
            version = "0.21. 
     | 
| 
      
 1836 
     | 
    
         
            +
            version = "0.21.3"
         
     | 
| 
       1778 
1837 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1779 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1838 
     | 
    
         
            +
            checksum = "b19faa85ecb5197342b54f987b142fb3e30d0c90da40f80ef4fa9a726e6676ed"
         
     | 
| 
       1780 
1839 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1781 
1840 
     | 
    
         
             
             "log",
         
     | 
| 
       1782 
1841 
     | 
    
         
             
             "ring",
         
     | 
| 
         @@ -1786,18 +1845,18 @@ dependencies = [ 
     | 
|
| 
       1786 
1845 
     | 
    
         | 
| 
       1787 
1846 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1788 
1847 
     | 
    
         
             
            name = "rustls-pemfile"
         
     | 
| 
       1789 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1848 
     | 
    
         
            +
            version = "1.0.3"
         
     | 
| 
       1790 
1849 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1791 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1850 
     | 
    
         
            +
            checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
         
     | 
| 
       1792 
1851 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1793 
1852 
     | 
    
         
             
             "base64",
         
     | 
| 
       1794 
1853 
     | 
    
         
             
            ]
         
     | 
| 
       1795 
1854 
     | 
    
         | 
| 
       1796 
1855 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1797 
1856 
     | 
    
         
             
            name = "rustls-webpki"
         
     | 
| 
       1798 
     | 
    
         
            -
            version = "0. 
     | 
| 
      
 1857 
     | 
    
         
            +
            version = "0.101.1"
         
     | 
| 
       1799 
1858 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1800 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1859 
     | 
    
         
            +
            checksum = "15f36a6828982f422756984e47912a7a51dcbc2a197aa791158f8ca61cd8204e"
         
     | 
| 
       1801 
1860 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1802 
1861 
     | 
    
         
             
             "ring",
         
     | 
| 
       1803 
1862 
     | 
    
         
             
             "untrusted",
         
     | 
| 
         @@ -1816,9 +1875,9 @@ dependencies = [ 
     | 
|
| 
       1816 
1875 
     | 
    
         | 
| 
       1817 
1876 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1818 
1877 
     | 
    
         
             
            name = "ryu"
         
     | 
| 
       1819 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1878 
     | 
    
         
            +
            version = "1.0.14"
         
     | 
| 
       1820 
1879 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1821 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1880 
     | 
    
         
            +
            checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
         
     | 
| 
       1822 
1881 
     | 
    
         | 
| 
       1823 
1882 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1824 
1883 
     | 
    
         
             
            name = "scopeguard"
         
     | 
| 
         @@ -1843,7 +1902,7 @@ checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae" 
     | 
|
| 
       1843 
1902 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1844 
1903 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1845 
1904 
     | 
    
         
             
             "quote",
         
     | 
| 
       1846 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1905 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       1847 
1906 
     | 
    
         
             
            ]
         
     | 
| 
       1848 
1907 
     | 
    
         | 
| 
       1849 
1908 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -1864,29 +1923,29 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 
     | 
|
| 
       1864 
1923 
     | 
    
         | 
| 
       1865 
1924 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1866 
1925 
     | 
    
         
             
            name = "serde"
         
     | 
| 
       1867 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1926 
     | 
    
         
            +
            version = "1.0.171"
         
     | 
| 
       1868 
1927 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1869 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1928 
     | 
    
         
            +
            checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
         
     | 
| 
       1870 
1929 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1871 
1930 
     | 
    
         
             
             "serde_derive",
         
     | 
| 
       1872 
1931 
     | 
    
         
             
            ]
         
     | 
| 
       1873 
1932 
     | 
    
         | 
| 
       1874 
1933 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1875 
1934 
     | 
    
         
             
            name = "serde_derive"
         
     | 
| 
       1876 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1935 
     | 
    
         
            +
            version = "1.0.171"
         
     | 
| 
       1877 
1936 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1878 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1937 
     | 
    
         
            +
            checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
         
     | 
| 
       1879 
1938 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1880 
1939 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       1881 
1940 
     | 
    
         
             
             "quote",
         
     | 
| 
       1882 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 1941 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       1883 
1942 
     | 
    
         
             
            ]
         
     | 
| 
       1884 
1943 
     | 
    
         | 
| 
       1885 
1944 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1886 
1945 
     | 
    
         
             
            name = "serde_json"
         
     | 
| 
       1887 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 1946 
     | 
    
         
            +
            version = "1.0.100"
         
     | 
| 
       1888 
1947 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1889 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1948 
     | 
    
         
            +
            checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
         
     | 
| 
       1890 
1949 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       1891 
1950 
     | 
    
         
             
             "itoa",
         
     | 
| 
       1892 
1951 
     | 
    
         
             
             "ryu",
         
     | 
| 
         @@ -1922,9 +1981,9 @@ dependencies = [ 
     | 
|
| 
       1922 
1981 
     | 
    
         | 
| 
       1923 
1982 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1924 
1983 
     | 
    
         
             
            name = "smallvec"
         
     | 
| 
       1925 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 1984 
     | 
    
         
            +
            version = "1.11.0"
         
     | 
| 
       1926 
1985 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       1927 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 1986 
     | 
    
         
            +
            checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
         
     | 
| 
       1928 
1987 
     | 
    
         | 
| 
       1929 
1988 
     | 
    
         
             
            [[package]]
         
     | 
| 
       1930 
1989 
     | 
    
         
             
            name = "socket2"
         
     | 
| 
         @@ -2011,9 +2070,9 @@ dependencies = [ 
     | 
|
| 
       2011 
2070 
     | 
    
         | 
| 
       2012 
2071 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2013 
2072 
     | 
    
         
             
            name = "syn"
         
     | 
| 
       2014 
     | 
    
         
            -
            version = "2.0. 
     | 
| 
      
 2073 
     | 
    
         
            +
            version = "2.0.25"
         
     | 
| 
       2015 
2074 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2016 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2075 
     | 
    
         
            +
            checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
         
     | 
| 
       2017 
2076 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2018 
2077 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2019 
2078 
     | 
    
         
             
             "quote",
         
     | 
| 
         @@ -2030,7 +2089,7 @@ dependencies = [ 
     | 
|
| 
       2030 
2089 
     | 
    
         
             
             "cfg-if",
         
     | 
| 
       2031 
2090 
     | 
    
         
             
             "fastrand",
         
     | 
| 
       2032 
2091 
     | 
    
         
             
             "redox_syscall 0.3.5",
         
     | 
| 
       2033 
     | 
    
         
            -
             "rustix",
         
     | 
| 
      
 2092 
     | 
    
         
            +
             "rustix 0.37.23",
         
     | 
| 
       2034 
2093 
     | 
    
         
             
             "windows-sys",
         
     | 
| 
       2035 
2094 
     | 
    
         
             
            ]
         
     | 
| 
       2036 
2095 
     | 
    
         | 
| 
         @@ -2070,22 +2129,22 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 
     | 
|
| 
       2070 
2129 
     | 
    
         | 
| 
       2071 
2130 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2072 
2131 
     | 
    
         
             
            name = "thiserror"
         
     | 
| 
       2073 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2132 
     | 
    
         
            +
            version = "1.0.43"
         
     | 
| 
       2074 
2133 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2075 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2134 
     | 
    
         
            +
            checksum = "a35fc5b8971143ca348fa6df4f024d4d55264f3468c71ad1c2f365b0a4d58c42"
         
     | 
| 
       2076 
2135 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2077 
2136 
     | 
    
         
             
             "thiserror-impl",
         
     | 
| 
       2078 
2137 
     | 
    
         
             
            ]
         
     | 
| 
       2079 
2138 
     | 
    
         | 
| 
       2080 
2139 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2081 
2140 
     | 
    
         
             
            name = "thiserror-impl"
         
     | 
| 
       2082 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2141 
     | 
    
         
            +
            version = "1.0.43"
         
     | 
| 
       2083 
2142 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2084 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2143 
     | 
    
         
            +
            checksum = "463fe12d7993d3b327787537ce8dd4dfa058de32fc2b195ef3cde03dc4771e8f"
         
     | 
| 
       2085 
2144 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2086 
2145 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2087 
2146 
     | 
    
         
             
             "quote",
         
     | 
| 
       2088 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2147 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       2089 
2148 
     | 
    
         
             
            ]
         
     | 
| 
       2090 
2149 
     | 
    
         | 
| 
       2091 
2150 
     | 
    
         
             
            [[package]]
         
     | 
| 
         @@ -2122,11 +2181,12 @@ checksum = "c7c4ceeeca15c8384bbc3e011dbd8fccb7f068a440b752b7d9b32ceb0ca0e2e8" 
     | 
|
| 
       2122 
2181 
     | 
    
         | 
| 
       2123 
2182 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2124 
2183 
     | 
    
         
             
            name = "tokio"
         
     | 
| 
       2125 
     | 
    
         
            -
            version = "1. 
     | 
| 
      
 2184 
     | 
    
         
            +
            version = "1.29.1"
         
     | 
| 
       2126 
2185 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2127 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2186 
     | 
    
         
            +
            checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
         
     | 
| 
       2128 
2187 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2129 
2188 
     | 
    
         
             
             "autocfg",
         
     | 
| 
      
 2189 
     | 
    
         
            +
             "backtrace",
         
     | 
| 
       2130 
2190 
     | 
    
         
             
             "bytes",
         
     | 
| 
       2131 
2191 
     | 
    
         
             
             "libc",
         
     | 
| 
       2132 
2192 
     | 
    
         
             
             "mio",
         
     | 
| 
         @@ -2219,9 +2279,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 
     | 
|
| 
       2219 
2279 
     | 
    
         | 
| 
       2220 
2280 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2221 
2281 
     | 
    
         
             
            name = "unicode-ident"
         
     | 
| 
       2222 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 2282 
     | 
    
         
            +
            version = "1.0.10"
         
     | 
| 
       2223 
2283 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2224 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2284 
     | 
    
         
            +
            checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
         
     | 
| 
       2225 
2285 
     | 
    
         | 
| 
       2226 
2286 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2227 
2287 
     | 
    
         
             
            name = "unicode-normalization"
         
     | 
| 
         @@ -2327,7 +2387,7 @@ dependencies = [ 
     | 
|
| 
       2327 
2387 
     | 
    
         
             
             "once_cell",
         
     | 
| 
       2328 
2388 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2329 
2389 
     | 
    
         
             
             "quote",
         
     | 
| 
       2330 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2390 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       2331 
2391 
     | 
    
         
             
             "wasm-bindgen-shared",
         
     | 
| 
       2332 
2392 
     | 
    
         
             
            ]
         
     | 
| 
       2333 
2393 
     | 
    
         | 
| 
         @@ -2361,7 +2421,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 
     | 
|
| 
       2361 
2421 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2362 
2422 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       2363 
2423 
     | 
    
         
             
             "quote",
         
     | 
| 
       2364 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 2424 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       2365 
2425 
     | 
    
         
             
             "wasm-bindgen-backend",
         
     | 
| 
       2366 
2426 
     | 
    
         
             
             "wasm-bindgen-shared",
         
     | 
| 
       2367 
2427 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -2463,9 +2523,9 @@ dependencies = [ 
     | 
|
| 
       2463 
2523 
     | 
    
         | 
| 
       2464 
2524 
     | 
    
         
             
            [[package]]
         
     | 
| 
       2465 
2525 
     | 
    
         
             
            name = "windows-targets"
         
     | 
| 
       2466 
     | 
    
         
            -
            version = "0.48. 
     | 
| 
      
 2526 
     | 
    
         
            +
            version = "0.48.1"
         
     | 
| 
       2467 
2527 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       2468 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 2528 
     | 
    
         
            +
            checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
         
     | 
| 
       2469 
2529 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       2470 
2530 
     | 
    
         
             
             "windows_aarch64_gnullvm",
         
     | 
| 
       2471 
2531 
     | 
    
         
             
             "windows_aarch64_msvc",
         
     | 
    
        data/ext/rbspy/src/lib.rs
    CHANGED
    
    | 
         @@ -206,7 +206,7 @@ pub extern "C" fn initialize_agent( 
     | 
|
| 
       206 
206 
     | 
    
         
             
                    .backend(rbspy)
         
     | 
| 
       207 
207 
     | 
    
         
             
                    .func(transform_report)
         
     | 
| 
       208 
208 
     | 
    
         
             
                    .tags(tags)
         
     | 
| 
       209 
     | 
    
         
            -
                    .report_encoding( 
     | 
| 
      
 209 
     | 
    
         
            +
                    .report_encoding(ReportEncoding::PPROF);
         
     | 
| 
       210 
210 
     | 
    
         | 
| 
       211 
211 
     | 
    
         
             
                if auth_token != "" {
         
     | 
| 
       212 
212 
     | 
    
         
             
                    agent_builder = agent_builder.auth_token(auth_token);
         
     | 
    
        data/ext/thread_id/Cargo.lock
    CHANGED
    
    | 
         @@ -136,9 +136,9 @@ dependencies = [ 
     | 
|
| 
       136 
136 
     | 
    
         | 
| 
       137 
137 
     | 
    
         
             
            [[package]]
         
     | 
| 
       138 
138 
     | 
    
         
             
            name = "hermit-abi"
         
     | 
| 
       139 
     | 
    
         
            -
            version = "0.3. 
     | 
| 
      
 139 
     | 
    
         
            +
            version = "0.3.2"
         
     | 
| 
       140 
140 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       141 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 141 
     | 
    
         
            +
            checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
         
     | 
| 
       142 
142 
     | 
    
         | 
| 
       143 
143 
     | 
    
         
             
            [[package]]
         
     | 
| 
       144 
144 
     | 
    
         
             
            name = "indexmap"
         
     | 
| 
         @@ -165,22 +165,22 @@ version = "1.0.11" 
     | 
|
| 
       165 
165 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       166 
166 
     | 
    
         
             
            checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
         
     | 
| 
       167 
167 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       168 
     | 
    
         
            -
             "hermit-abi 0.3. 
     | 
| 
      
 168 
     | 
    
         
            +
             "hermit-abi 0.3.2",
         
     | 
| 
       169 
169 
     | 
    
         
             
             "libc",
         
     | 
| 
       170 
170 
     | 
    
         
             
             "windows-sys",
         
     | 
| 
       171 
171 
     | 
    
         
             
            ]
         
     | 
| 
       172 
172 
     | 
    
         | 
| 
       173 
173 
     | 
    
         
             
            [[package]]
         
     | 
| 
       174 
174 
     | 
    
         
             
            name = "itoa"
         
     | 
| 
       175 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 175 
     | 
    
         
            +
            version = "1.0.8"
         
     | 
| 
       176 
176 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       177 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 177 
     | 
    
         
            +
            checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
         
     | 
| 
       178 
178 
     | 
    
         | 
| 
       179 
179 
     | 
    
         
             
            [[package]]
         
     | 
| 
       180 
180 
     | 
    
         
             
            name = "libc"
         
     | 
| 
       181 
     | 
    
         
            -
            version = "0.2. 
     | 
| 
      
 181 
     | 
    
         
            +
            version = "0.2.147"
         
     | 
| 
       182 
182 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       183 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 183 
     | 
    
         
            +
            checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
         
     | 
| 
       184 
184 
     | 
    
         | 
| 
       185 
185 
     | 
    
         
             
            [[package]]
         
     | 
| 
       186 
186 
     | 
    
         
             
            name = "linux-raw-sys"
         
     | 
| 
         @@ -196,18 +196,18 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" 
     | 
|
| 
       196 
196 
     | 
    
         | 
| 
       197 
197 
     | 
    
         
             
            [[package]]
         
     | 
| 
       198 
198 
     | 
    
         
             
            name = "proc-macro2"
         
     | 
| 
       199 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 199 
     | 
    
         
            +
            version = "1.0.64"
         
     | 
| 
       200 
200 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       201 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 201 
     | 
    
         
            +
            checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
         
     | 
| 
       202 
202 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       203 
203 
     | 
    
         
             
             "unicode-ident",
         
     | 
| 
       204 
204 
     | 
    
         
             
            ]
         
     | 
| 
       205 
205 
     | 
    
         | 
| 
       206 
206 
     | 
    
         
             
            [[package]]
         
     | 
| 
       207 
207 
     | 
    
         
             
            name = "quote"
         
     | 
| 
       208 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 208 
     | 
    
         
            +
            version = "1.0.29"
         
     | 
| 
       209 
209 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       210 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 210 
     | 
    
         
            +
            checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
         
     | 
| 
       211 
211 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       212 
212 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       213 
213 
     | 
    
         
             
            ]
         
     | 
| 
         @@ -223,9 +223,9 @@ dependencies = [ 
     | 
|
| 
       223 
223 
     | 
    
         | 
| 
       224 
224 
     | 
    
         
             
            [[package]]
         
     | 
| 
       225 
225 
     | 
    
         
             
            name = "rustix"
         
     | 
| 
       226 
     | 
    
         
            -
            version = "0.37. 
     | 
| 
      
 226 
     | 
    
         
            +
            version = "0.37.23"
         
     | 
| 
       227 
227 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       228 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 228 
     | 
    
         
            +
            checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
         
     | 
| 
       229 
229 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       230 
230 
     | 
    
         
             
             "bitflags",
         
     | 
| 
       231 
231 
     | 
    
         
             
             "errno",
         
     | 
| 
         @@ -237,35 +237,35 @@ dependencies = [ 
     | 
|
| 
       237 
237 
     | 
    
         | 
| 
       238 
238 
     | 
    
         
             
            [[package]]
         
     | 
| 
       239 
239 
     | 
    
         
             
            name = "ryu"
         
     | 
| 
       240 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 240 
     | 
    
         
            +
            version = "1.0.14"
         
     | 
| 
       241 
241 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       242 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 242 
     | 
    
         
            +
            checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
         
     | 
| 
       243 
243 
     | 
    
         | 
| 
       244 
244 
     | 
    
         
             
            [[package]]
         
     | 
| 
       245 
245 
     | 
    
         
             
            name = "serde"
         
     | 
| 
       246 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 246 
     | 
    
         
            +
            version = "1.0.171"
         
     | 
| 
       247 
247 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       248 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 248 
     | 
    
         
            +
            checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
         
     | 
| 
       249 
249 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       250 
250 
     | 
    
         
             
             "serde_derive",
         
     | 
| 
       251 
251 
     | 
    
         
             
            ]
         
     | 
| 
       252 
252 
     | 
    
         | 
| 
       253 
253 
     | 
    
         
             
            [[package]]
         
     | 
| 
       254 
254 
     | 
    
         
             
            name = "serde_derive"
         
     | 
| 
       255 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 255 
     | 
    
         
            +
            version = "1.0.171"
         
     | 
| 
       256 
256 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       257 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 257 
     | 
    
         
            +
            checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
         
     | 
| 
       258 
258 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       259 
259 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       260 
260 
     | 
    
         
             
             "quote",
         
     | 
| 
       261 
     | 
    
         
            -
             "syn 2.0. 
     | 
| 
      
 261 
     | 
    
         
            +
             "syn 2.0.25",
         
     | 
| 
       262 
262 
     | 
    
         
             
            ]
         
     | 
| 
       263 
263 
     | 
    
         | 
| 
       264 
264 
     | 
    
         
             
            [[package]]
         
     | 
| 
       265 
265 
     | 
    
         
             
            name = "serde_json"
         
     | 
| 
       266 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 266 
     | 
    
         
            +
            version = "1.0.100"
         
     | 
| 
       267 
267 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       268 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 268 
     | 
    
         
            +
            checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
         
     | 
| 
       269 
269 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       270 
270 
     | 
    
         
             
             "itoa",
         
     | 
| 
       271 
271 
     | 
    
         
             
             "ryu",
         
     | 
| 
         @@ -291,9 +291,9 @@ dependencies = [ 
     | 
|
| 
       291 
291 
     | 
    
         | 
| 
       292 
292 
     | 
    
         
             
            [[package]]
         
     | 
| 
       293 
293 
     | 
    
         
             
            name = "syn"
         
     | 
| 
       294 
     | 
    
         
            -
            version = "2.0. 
     | 
| 
      
 294 
     | 
    
         
            +
            version = "2.0.25"
         
     | 
| 
       295 
295 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       296 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 296 
     | 
    
         
            +
            checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
         
     | 
| 
       297 
297 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       298 
298 
     | 
    
         
             
             "proc-macro2",
         
     | 
| 
       299 
299 
     | 
    
         
             
             "quote",
         
     | 
| 
         @@ -342,9 +342,9 @@ dependencies = [ 
     | 
|
| 
       342 
342 
     | 
    
         | 
| 
       343 
343 
     | 
    
         
             
            [[package]]
         
     | 
| 
       344 
344 
     | 
    
         
             
            name = "unicode-ident"
         
     | 
| 
       345 
     | 
    
         
            -
            version = "1.0. 
     | 
| 
      
 345 
     | 
    
         
            +
            version = "1.0.10"
         
     | 
| 
       346 
346 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       347 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 347 
     | 
    
         
            +
            checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
         
     | 
| 
       348 
348 
     | 
    
         | 
| 
       349 
349 
     | 
    
         
             
            [[package]]
         
     | 
| 
       350 
350 
     | 
    
         
             
            name = "unicode-segmentation"
         
     | 
| 
         @@ -397,9 +397,9 @@ dependencies = [ 
     | 
|
| 
       397 
397 
     | 
    
         | 
| 
       398 
398 
     | 
    
         
             
            [[package]]
         
     | 
| 
       399 
399 
     | 
    
         
             
            name = "windows-targets"
         
     | 
| 
       400 
     | 
    
         
            -
            version = "0.48. 
     | 
| 
      
 400 
     | 
    
         
            +
            version = "0.48.1"
         
     | 
| 
       401 
401 
     | 
    
         
             
            source = "registry+https://github.com/rust-lang/crates.io-index"
         
     | 
| 
       402 
     | 
    
         
            -
            checksum = " 
     | 
| 
      
 402 
     | 
    
         
            +
            checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
         
     | 
| 
       403 
403 
     | 
    
         
             
            dependencies = [
         
     | 
| 
       404 
404 
     | 
    
         
             
             "windows_aarch64_gnullvm",
         
     | 
| 
       405 
405 
     | 
    
         
             
             "windows_aarch64_msvc",
         
     | 
    
        data/lib/pyroscope/version.rb
    CHANGED
    
    
    
        data/lib/rbspy/rbspy.bundle
    CHANGED
    
    | 
         Binary file 
     | 
| 
         Binary file 
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: pyroscope
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.5. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.5.10
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86_64-darwin
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Pyroscope Team
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-07-10 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: ffi
         
     |