pyroscope 0.5.8-aarch64-linux → 0.5.10-aarch64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddc768f1e26e34b3361ffd5990c4e6e72504c76a87125b2091b91ec47488bdfd
4
- data.tar.gz: 2fe66991a76cd099aa9798b4720f23f082ed6bed4daed44fc7a8bf7b1c4f7530
3
+ metadata.gz: 4adda41263d4b29f3ef5a64e3c7a6bcae5f39bf8379221c49e4e6be521bba3a8
4
+ data.tar.gz: d7edf3365a71610273252886c72264fedce0f554752eae3d616f1b839f5dcc6c
5
5
  SHA512:
6
- metadata.gz: 833431f0af035b1eb138263e77c267d0689fae3d73501c633159de15bc2f91507186b0c3cb94e4f347b083da5d7ceace821675fd1d0d9ef68a1e84db4fb07465
7
- data.tar.gz: 7e0300af463a553be025f9be1bd7465efc3cd1fd5bbfa73735b7a31cfca79306fa4d203a27cbc4cf194c2e874182fcc1615c067a9ba458094d94fa5e5828f5c2
6
+ metadata.gz: 514614f125d6cc8116c6d056010d0a92563b4ed62dec635144aac2c73baabbd61069fae9c168eee43909fd03718e65f62c3d797ad5391d211998e24cb0190a13
7
+ data.tar.gz: 4087a653ab1f988d03a70ae0d1e4d8309ad45f2b89fb3f6ac28810767c86594bff4c08e0b3538dda0cc6c29831a1f2bab97bf4eab5184e2b75b054a05c53da44
data/ext/rbspy/Cargo.lock CHANGED
@@ -196,6 +196,26 @@ dependencies = [
196
196
  "which",
197
197
  ]
198
198
 
199
+ [[package]]
200
+ name = "bindgen"
201
+ version = "0.64.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
204
+ dependencies = [
205
+ "bitflags",
206
+ "cexpr",
207
+ "clang-sys",
208
+ "lazy_static 1.4.0",
209
+ "lazycell",
210
+ "peeking_take_while",
211
+ "proc-macro2",
212
+ "quote",
213
+ "regex",
214
+ "rustc-hash",
215
+ "shlex",
216
+ "syn",
217
+ ]
218
+
199
219
  [[package]]
200
220
  name = "bitflags"
201
221
  version = "1.3.2"
@@ -485,22 +505,23 @@ dependencies = [
485
505
 
486
506
  [[package]]
487
507
  name = "directories"
488
- version = "4.0.1"
508
+ version = "5.0.1"
489
509
  source = "registry+https://github.com/rust-lang/crates.io-index"
490
- checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
510
+ checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
491
511
  dependencies = [
492
512
  "dirs-sys",
493
513
  ]
494
514
 
495
515
  [[package]]
496
516
  name = "dirs-sys"
497
- version = "0.3.7"
517
+ version = "0.4.1"
498
518
  source = "registry+https://github.com/rust-lang/crates.io-index"
499
- checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
519
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
500
520
  dependencies = [
501
521
  "libc",
522
+ "option-ext",
502
523
  "redox_users",
503
- "winapi",
524
+ "windows-sys 0.48.0",
504
525
  ]
505
526
 
506
527
  [[package]]
@@ -568,6 +589,17 @@ dependencies = [
568
589
  "winapi",
569
590
  ]
570
591
 
592
+ [[package]]
593
+ name = "errno"
594
+ version = "0.3.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
597
+ dependencies = [
598
+ "errno-dragonfly",
599
+ "libc",
600
+ "windows-sys 0.48.0",
601
+ ]
602
+
571
603
  [[package]]
572
604
  name = "errno-dragonfly"
573
605
  version = "0.1.2"
@@ -635,12 +667,6 @@ dependencies = [
635
667
  "percent-encoding",
636
668
  ]
637
669
 
638
- [[package]]
639
- name = "fuchsia-cprng"
640
- version = "0.1.1"
641
- source = "registry+https://github.com/rust-lang/crates.io-index"
642
- checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
643
-
644
670
  [[package]]
645
671
  name = "futures-channel"
646
672
  version = "0.3.26"
@@ -997,12 +1023,13 @@ checksum = "ae52f28f45ac2bc96edb7714de995cffc174a395fb0abf5bff453587c980d7b9"
997
1023
 
998
1024
  [[package]]
999
1025
  name = "io-lifetimes"
1000
- version = "1.0.5"
1026
+ version = "1.0.11"
1001
1027
  source = "registry+https://github.com/rust-lang/crates.io-index"
1002
- checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
1028
+ checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
1003
1029
  dependencies = [
1030
+ "hermit-abi 0.3.1",
1004
1031
  "libc",
1005
- "windows-sys 0.45.0",
1032
+ "windows-sys 0.48.0",
1006
1033
  ]
1007
1034
 
1008
1035
  [[package]]
@@ -1019,7 +1046,7 @@ checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
1019
1046
  dependencies = [
1020
1047
  "hermit-abi 0.3.1",
1021
1048
  "io-lifetimes",
1022
- "rustix",
1049
+ "rustix 0.36.8",
1023
1050
  "windows-sys 0.45.0",
1024
1051
  ]
1025
1052
 
@@ -1073,9 +1100,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1073
1100
 
1074
1101
  [[package]]
1075
1102
  name = "libc"
1076
- version = "0.2.139"
1103
+ version = "0.2.147"
1077
1104
  source = "registry+https://github.com/rust-lang/crates.io-index"
1078
- checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
1105
+ checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
1079
1106
 
1080
1107
  [[package]]
1081
1108
  name = "libflate"
@@ -1114,7 +1141,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
1141
  checksum = "0b799ad155d75ce914c467ee5627b62247c20d4aedbd446f821484cebf3cded7"
1115
1142
  dependencies = [
1116
1143
  "bindgen 0.59.2",
1117
- "errno",
1144
+ "errno 0.2.8",
1145
+ "libc",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "libproc"
1150
+ version = "0.13.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "8b18cbf29f8ff3542ba22bdce9ac610fcb75d74bb4e2b306b2a2762242025b4f"
1153
+ dependencies = [
1154
+ "bindgen 0.64.0",
1155
+ "errno 0.2.8",
1118
1156
  "libc",
1119
1157
  ]
1120
1158
 
@@ -1133,6 +1171,12 @@ version = "0.1.4"
1133
1171
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
1172
  checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
1135
1173
 
1174
+ [[package]]
1175
+ name = "linux-raw-sys"
1176
+ version = "0.3.8"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
1179
+
1136
1180
  [[package]]
1137
1181
  name = "lock_api"
1138
1182
  version = "0.4.9"
@@ -1250,7 +1294,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
1294
  checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc"
1251
1295
  dependencies = [
1252
1296
  "clap 3.2.23",
1253
- "rand 0.8.5",
1297
+ "rand",
1254
1298
  ]
1255
1299
 
1256
1300
  [[package]]
@@ -1344,6 +1388,12 @@ version = "1.17.1"
1344
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
1389
  checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
1346
1390
 
1391
+ [[package]]
1392
+ name = "option-ext"
1393
+ version = "0.2.0"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1396
+
1347
1397
  [[package]]
1348
1398
  name = "os_str_bytes"
1349
1399
  version = "6.4.1"
@@ -1364,7 +1414,7 @@ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
1364
1414
  dependencies = [
1365
1415
  "cfg-if",
1366
1416
  "libc",
1367
- "redox_syscall",
1417
+ "redox_syscall 0.2.16",
1368
1418
  "smallvec",
1369
1419
  "windows-sys 0.45.0",
1370
1420
  ]
@@ -1457,7 +1507,7 @@ dependencies = [
1457
1507
  "anyhow",
1458
1508
  "bindgen 0.60.1",
1459
1509
  "libc",
1460
- "libproc",
1510
+ "libproc 0.12.0",
1461
1511
  "mach2",
1462
1512
  "winapi",
1463
1513
  ]
@@ -1501,6 +1551,43 @@ dependencies = [
1501
1551
  "winapi",
1502
1552
  ]
1503
1553
 
1554
+ [[package]]
1555
+ name = "pyroscope-rbspy-oncpu"
1556
+ version = "0.17.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "bab7a460ac334ed5b24ada78f1c8e024fdf95ba1f7ef0fdb205e5a5f3331785d"
1559
+ dependencies = [
1560
+ "anyhow",
1561
+ "chrono",
1562
+ "clap 3.2.23",
1563
+ "ctrlc",
1564
+ "directories",
1565
+ "env_logger 0.10.0",
1566
+ "flate2",
1567
+ "goblin",
1568
+ "inferno",
1569
+ "lazy_static 1.4.0",
1570
+ "libc",
1571
+ "libproc 0.13.0",
1572
+ "log",
1573
+ "memmap2",
1574
+ "nix 0.26.2",
1575
+ "proc-maps",
1576
+ "prost",
1577
+ "rand",
1578
+ "rbspy-ruby-structs",
1579
+ "remoteprocess",
1580
+ "semver",
1581
+ "serde",
1582
+ "serde_derive",
1583
+ "serde_json",
1584
+ "spytools",
1585
+ "tempfile",
1586
+ "term_size",
1587
+ "thiserror",
1588
+ "winapi",
1589
+ ]
1590
+
1504
1591
  [[package]]
1505
1592
  name = "pyroscope_rbspy"
1506
1593
  version = "0.2.5"
@@ -1509,7 +1596,7 @@ dependencies = [
1509
1596
  "inferno",
1510
1597
  "log",
1511
1598
  "pyroscope",
1512
- "rbspy 0.16.0",
1599
+ "pyroscope-rbspy-oncpu",
1513
1600
  "thiserror",
1514
1601
  ]
1515
1602
 
@@ -1537,19 +1624,6 @@ dependencies = [
1537
1624
  "proc-macro2",
1538
1625
  ]
1539
1626
 
1540
- [[package]]
1541
- name = "rand"
1542
- version = "0.4.6"
1543
- source = "registry+https://github.com/rust-lang/crates.io-index"
1544
- checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
1545
- dependencies = [
1546
- "fuchsia-cprng",
1547
- "libc",
1548
- "rand_core 0.3.1",
1549
- "rdrand",
1550
- "winapi",
1551
- ]
1552
-
1553
1627
  [[package]]
1554
1628
  name = "rand"
1555
1629
  version = "0.8.5"
@@ -1558,7 +1632,7 @@ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1558
1632
  dependencies = [
1559
1633
  "libc",
1560
1634
  "rand_chacha",
1561
- "rand_core 0.6.4",
1635
+ "rand_core",
1562
1636
  ]
1563
1637
 
1564
1638
  [[package]]
@@ -1568,24 +1642,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
1642
  checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1569
1643
  dependencies = [
1570
1644
  "ppv-lite86",
1571
- "rand_core 0.6.4",
1572
- ]
1573
-
1574
- [[package]]
1575
- name = "rand_core"
1576
- version = "0.3.1"
1577
- source = "registry+https://github.com/rust-lang/crates.io-index"
1578
- checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
1579
- dependencies = [
1580
- "rand_core 0.4.2",
1645
+ "rand_core",
1581
1646
  ]
1582
1647
 
1583
- [[package]]
1584
- name = "rand_core"
1585
- version = "0.4.2"
1586
- source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
1588
-
1589
1648
  [[package]]
1590
1649
  name = "rand_core"
1591
1650
  version = "0.6.4"
@@ -1608,53 +1667,11 @@ dependencies = [
1608
1667
  "pyroscope_rbspy",
1609
1668
  ]
1610
1669
 
1611
- [[package]]
1612
- name = "rbspy"
1613
- version = "0.16.0"
1614
- dependencies = [
1615
- "anyhow",
1616
- "chrono",
1617
- "clap 3.2.23",
1618
- "ctrlc",
1619
- "directories",
1620
- "env_logger 0.10.0",
1621
- "flate2",
1622
- "goblin",
1623
- "inferno",
1624
- "lazy_static 1.4.0",
1625
- "libc",
1626
- "libproc",
1627
- "log",
1628
- "memmap2",
1629
- "nix 0.26.2",
1630
- "proc-maps",
1631
- "prost",
1632
- "rand 0.8.5",
1633
- "rbspy-ruby-structs",
1634
- "remoteprocess",
1635
- "semver",
1636
- "serde",
1637
- "serde_derive",
1638
- "serde_json",
1639
- "spytools",
1640
- "tempdir",
1641
- "term_size",
1642
- "thiserror",
1643
- "winapi",
1644
- ]
1645
-
1646
1670
  [[package]]
1647
1671
  name = "rbspy-ruby-structs"
1648
- version = "0.16.0"
1649
-
1650
- [[package]]
1651
- name = "rdrand"
1652
- version = "0.4.0"
1672
+ version = "0.17.0"
1653
1673
  source = "registry+https://github.com/rust-lang/crates.io-index"
1654
- checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
1655
- dependencies = [
1656
- "rand_core 0.3.1",
1657
- ]
1674
+ checksum = "90afb0dd7bf12f7cc75eb2bd7f5d33955ad7670176062158c4e56e245e55d1d2"
1658
1675
 
1659
1676
  [[package]]
1660
1677
  name = "read-process-memory"
@@ -1677,6 +1694,15 @@ dependencies = [
1677
1694
  "bitflags",
1678
1695
  ]
1679
1696
 
1697
+ [[package]]
1698
+ name = "redox_syscall"
1699
+ version = "0.3.5"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
1702
+ dependencies = [
1703
+ "bitflags",
1704
+ ]
1705
+
1680
1706
  [[package]]
1681
1707
  name = "redox_users"
1682
1708
  version = "0.4.3"
@@ -1684,7 +1710,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
1710
  checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1685
1711
  dependencies = [
1686
1712
  "getrandom",
1687
- "redox_syscall",
1713
+ "redox_syscall 0.2.16",
1688
1714
  "thiserror",
1689
1715
  ]
1690
1716
 
@@ -1715,7 +1741,7 @@ dependencies = [
1715
1741
  "goblin",
1716
1742
  "lazy_static 1.4.0",
1717
1743
  "libc",
1718
- "libproc",
1744
+ "libproc 0.12.0",
1719
1745
  "log",
1720
1746
  "mach",
1721
1747
  "mach_o_sys",
@@ -1728,15 +1754,6 @@ dependencies = [
1728
1754
  "winapi",
1729
1755
  ]
1730
1756
 
1731
- [[package]]
1732
- name = "remove_dir_all"
1733
- version = "0.5.3"
1734
- source = "registry+https://github.com/rust-lang/crates.io-index"
1735
- checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1736
- dependencies = [
1737
- "winapi",
1738
- ]
1739
-
1740
1757
  [[package]]
1741
1758
  name = "reqwest"
1742
1759
  version = "0.11.14"
@@ -1834,13 +1851,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
1851
  checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
1835
1852
  dependencies = [
1836
1853
  "bitflags",
1837
- "errno",
1854
+ "errno 0.2.8",
1838
1855
  "io-lifetimes",
1839
1856
  "libc",
1840
- "linux-raw-sys",
1857
+ "linux-raw-sys 0.1.4",
1841
1858
  "windows-sys 0.45.0",
1842
1859
  ]
1843
1860
 
1861
+ [[package]]
1862
+ name = "rustix"
1863
+ version = "0.37.22"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c"
1866
+ dependencies = [
1867
+ "bitflags",
1868
+ "errno 0.3.1",
1869
+ "io-lifetimes",
1870
+ "libc",
1871
+ "linux-raw-sys 0.3.8",
1872
+ "windows-sys 0.48.0",
1873
+ ]
1874
+
1844
1875
  [[package]]
1845
1876
  name = "rustls"
1846
1877
  version = "0.20.8"
@@ -2063,28 +2094,18 @@ dependencies = [
2063
2094
  "unicode-ident",
2064
2095
  ]
2065
2096
 
2066
- [[package]]
2067
- name = "tempdir"
2068
- version = "0.3.7"
2069
- source = "registry+https://github.com/rust-lang/crates.io-index"
2070
- checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
2071
- dependencies = [
2072
- "rand 0.4.6",
2073
- "remove_dir_all",
2074
- ]
2075
-
2076
2097
  [[package]]
2077
2098
  name = "tempfile"
2078
- version = "3.3.0"
2099
+ version = "3.6.0"
2079
2100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2101
+ checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
2081
2102
  dependencies = [
2103
+ "autocfg",
2082
2104
  "cfg-if",
2083
2105
  "fastrand",
2084
- "libc",
2085
- "redox_syscall",
2086
- "remove_dir_all",
2087
- "winapi",
2106
+ "redox_syscall 0.3.5",
2107
+ "rustix 0.37.22",
2108
+ "windows-sys 0.48.0",
2088
2109
  ]
2089
2110
 
2090
2111
  [[package]]
@@ -2495,13 +2516,13 @@ version = "0.42.0"
2495
2516
  source = "registry+https://github.com/rust-lang/crates.io-index"
2496
2517
  checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2497
2518
  dependencies = [
2498
- "windows_aarch64_gnullvm",
2499
- "windows_aarch64_msvc",
2500
- "windows_i686_gnu",
2501
- "windows_i686_msvc",
2502
- "windows_x86_64_gnu",
2503
- "windows_x86_64_gnullvm",
2504
- "windows_x86_64_msvc",
2519
+ "windows_aarch64_gnullvm 0.42.1",
2520
+ "windows_aarch64_msvc 0.42.1",
2521
+ "windows_i686_gnu 0.42.1",
2522
+ "windows_i686_msvc 0.42.1",
2523
+ "windows_x86_64_gnu 0.42.1",
2524
+ "windows_x86_64_gnullvm 0.42.1",
2525
+ "windows_x86_64_msvc 0.42.1",
2505
2526
  ]
2506
2527
 
2507
2528
  [[package]]
@@ -2510,7 +2531,16 @@ version = "0.45.0"
2510
2531
  source = "registry+https://github.com/rust-lang/crates.io-index"
2511
2532
  checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2512
2533
  dependencies = [
2513
- "windows-targets",
2534
+ "windows-targets 0.42.1",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "windows-sys"
2539
+ version = "0.48.0"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2542
+ dependencies = [
2543
+ "windows-targets 0.48.1",
2514
2544
  ]
2515
2545
 
2516
2546
  [[package]]
@@ -2519,13 +2549,28 @@ version = "0.42.1"
2519
2549
  source = "registry+https://github.com/rust-lang/crates.io-index"
2520
2550
  checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
2521
2551
  dependencies = [
2522
- "windows_aarch64_gnullvm",
2523
- "windows_aarch64_msvc",
2524
- "windows_i686_gnu",
2525
- "windows_i686_msvc",
2526
- "windows_x86_64_gnu",
2527
- "windows_x86_64_gnullvm",
2528
- "windows_x86_64_msvc",
2552
+ "windows_aarch64_gnullvm 0.42.1",
2553
+ "windows_aarch64_msvc 0.42.1",
2554
+ "windows_i686_gnu 0.42.1",
2555
+ "windows_i686_msvc 0.42.1",
2556
+ "windows_x86_64_gnu 0.42.1",
2557
+ "windows_x86_64_gnullvm 0.42.1",
2558
+ "windows_x86_64_msvc 0.42.1",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "windows-targets"
2563
+ version = "0.48.1"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2566
+ dependencies = [
2567
+ "windows_aarch64_gnullvm 0.48.0",
2568
+ "windows_aarch64_msvc 0.48.0",
2569
+ "windows_i686_gnu 0.48.0",
2570
+ "windows_i686_msvc 0.48.0",
2571
+ "windows_x86_64_gnu 0.48.0",
2572
+ "windows_x86_64_gnullvm 0.48.0",
2573
+ "windows_x86_64_msvc 0.48.0",
2529
2574
  ]
2530
2575
 
2531
2576
  [[package]]
@@ -2534,42 +2579,84 @@ version = "0.42.1"
2534
2579
  source = "registry+https://github.com/rust-lang/crates.io-index"
2535
2580
  checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2536
2581
 
2582
+ [[package]]
2583
+ name = "windows_aarch64_gnullvm"
2584
+ version = "0.48.0"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2587
+
2537
2588
  [[package]]
2538
2589
  name = "windows_aarch64_msvc"
2539
2590
  version = "0.42.1"
2540
2591
  source = "registry+https://github.com/rust-lang/crates.io-index"
2541
2592
  checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
2542
2593
 
2594
+ [[package]]
2595
+ name = "windows_aarch64_msvc"
2596
+ version = "0.48.0"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2599
+
2543
2600
  [[package]]
2544
2601
  name = "windows_i686_gnu"
2545
2602
  version = "0.42.1"
2546
2603
  source = "registry+https://github.com/rust-lang/crates.io-index"
2547
2604
  checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
2548
2605
 
2606
+ [[package]]
2607
+ name = "windows_i686_gnu"
2608
+ version = "0.48.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2611
+
2549
2612
  [[package]]
2550
2613
  name = "windows_i686_msvc"
2551
2614
  version = "0.42.1"
2552
2615
  source = "registry+https://github.com/rust-lang/crates.io-index"
2553
2616
  checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
2554
2617
 
2618
+ [[package]]
2619
+ name = "windows_i686_msvc"
2620
+ version = "0.48.0"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2623
+
2555
2624
  [[package]]
2556
2625
  name = "windows_x86_64_gnu"
2557
2626
  version = "0.42.1"
2558
2627
  source = "registry+https://github.com/rust-lang/crates.io-index"
2559
2628
  checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
2560
2629
 
2630
+ [[package]]
2631
+ name = "windows_x86_64_gnu"
2632
+ version = "0.48.0"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2635
+
2561
2636
  [[package]]
2562
2637
  name = "windows_x86_64_gnullvm"
2563
2638
  version = "0.42.1"
2564
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2565
2640
  checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
2566
2641
 
2642
+ [[package]]
2643
+ name = "windows_x86_64_gnullvm"
2644
+ version = "0.48.0"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2647
+
2567
2648
  [[package]]
2568
2649
  name = "windows_x86_64_msvc"
2569
2650
  version = "0.42.1"
2570
2651
  source = "registry+https://github.com/rust-lang/crates.io-index"
2571
2652
  checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
2572
2653
 
2654
+ [[package]]
2655
+ name = "windows_x86_64_msvc"
2656
+ version = "0.48.0"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2659
+
2573
2660
  [[package]]
2574
2661
  name = "winreg"
2575
2662
  version = "0.10.1"
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(report_encoding);
209
+ .report_encoding(ReportEncoding::PPROF);
210
210
 
211
211
  if auth_token != "" {
212
212
  agent_builder = agent_builder.auth_token(auth_token);
@@ -1,3 +1,3 @@
1
1
  module Pyroscope
2
- VERSION = '0.5.8'.freeze
2
+ VERSION = '0.5.10'.freeze
3
3
  end
data/lib/rbspy/rbspy.so CHANGED
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.8
4
+ version: 0.5.10
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Pyroscope Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-15 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi