pyroscope 0.5.1-arm64-darwin → 0.5.3-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
data/ext/rbspy/Cargo.toml CHANGED
@@ -2,22 +2,19 @@
2
2
  name = "rbspy"
3
3
  version = "0.1.0"
4
4
  edition = "2021"
5
+ rust-version = "1.63"
5
6
 
6
7
  [lib]
7
8
  name = "rbspy"
8
9
  crate-type = ["cdylib"]
9
10
 
10
11
  [dependencies]
11
- #pyroscope = {version = "0.5.2" }
12
12
  pyroscope = { path = "../../../../" }
13
- #pyroscope_rbspy = { version = "0.2" }
14
13
  pyroscope_rbspy = { path = "../../../../pyroscope_backends/pyroscope_rbspy" }
15
14
  ffikit = { path = "../../../ffikit" }
16
15
  pretty_env_logger = "0.4.0"
17
-
18
- [patch.crates-io]
19
- read-process-memory = {git = "https://github.com/omarabid/read-process-memory.git", branch = "0.1.4-fix"}
20
- rbspy = {git="https://github.com/omarabid/rbspy.git", branch="oncpu-fix"}
16
+ inferno = "=0.11.14"
17
+ log = "0.4"
21
18
 
22
19
  [build-dependencies]
23
20
  cbindgen = "0.20.0"
data/ext/rbspy/src/lib.rs CHANGED
@@ -8,10 +8,14 @@ use std::str::FromStr;
8
8
  use ffikit::Signal;
9
9
  use pyroscope_rbspy::{rbspy_backend, RbspyConfig};
10
10
 
11
+ use pyroscope;
11
12
  use pyroscope::{pyroscope::Compression, PyroscopeAgent};
12
13
  use pyroscope::backend::{Report, StackFrame, Tag};
13
14
  use pyroscope::pyroscope::ReportEncoding;
14
15
 
16
+ const LOG_TAG: &str = "Pyroscope::rbspy::ffi";
17
+
18
+
15
19
  pub fn transform_report(report: Report) -> Report {
16
20
  let cwd = env::current_dir().unwrap();
17
21
  let cwd = cwd.to_str().unwrap_or("");
@@ -106,10 +110,21 @@ pub extern "C" fn initialize_logging(logging_level: u32) -> bool {
106
110
 
107
111
  #[no_mangle]
108
112
  pub extern "C" fn initialize_agent(
109
- application_name: *const c_char, server_address: *const c_char, auth_token: *const c_char,
110
- sample_rate: u32, detect_subprocesses: bool, oncpu: bool, report_pid: bool,
111
- report_thread_id: bool, tags: *const c_char, compression: *const c_char,
112
- report_encoding: *const c_char
113
+ application_name: *const c_char,
114
+ server_address: *const c_char,
115
+ auth_token: *const c_char,
116
+ basic_auth_user: *const c_char,
117
+ basic_auth_password: *const c_char,
118
+ sample_rate: u32,
119
+ detect_subprocesses: bool,
120
+ oncpu: bool,
121
+ report_pid: bool,
122
+ report_thread_id: bool,
123
+ tags: *const c_char,
124
+ compression: *const c_char,
125
+ report_encoding: *const c_char,
126
+ scope_org_id: *const c_char,
127
+ http_headers_json: *const c_char,
113
128
  ) -> bool {
114
129
  // Initialize FFIKit
115
130
  let recv = ffikit::initialize_ffi().unwrap();
@@ -129,6 +144,16 @@ pub extern "C" fn initialize_agent(
129
144
  .unwrap()
130
145
  .to_string();
131
146
 
147
+ let basic_auth_user = unsafe { CStr::from_ptr(basic_auth_user) }
148
+ .to_str()
149
+ .unwrap()
150
+ .to_string();
151
+
152
+ let basic_auth_password = unsafe { CStr::from_ptr(basic_auth_password) }
153
+ .to_str()
154
+ .unwrap()
155
+ .to_string();
156
+
132
157
  let tags_string = unsafe { CStr::from_ptr(tags) }
133
158
  .to_str()
134
159
  .unwrap()
@@ -144,6 +169,16 @@ pub extern "C" fn initialize_agent(
144
169
  .unwrap()
145
170
  .to_string();
146
171
 
172
+ let scope_org_id = unsafe { CStr::from_ptr(scope_org_id) }
173
+ .to_str()
174
+ .unwrap()
175
+ .to_string();
176
+
177
+ let http_headers_json = unsafe { CStr::from_ptr(http_headers_json) }
178
+ .to_str()
179
+ .unwrap()
180
+ .to_string();
181
+
147
182
  let compression = Compression::from_str(&compression_string);
148
183
  let report_encoding = ReportEncoding::from_str(&report_encoding)
149
184
  .unwrap_or(ReportEncoding::FOLDED);
@@ -170,6 +205,30 @@ pub extern "C" fn initialize_agent(
170
205
 
171
206
  if auth_token != "" {
172
207
  agent_builder = agent_builder.auth_token(auth_token);
208
+ } else if basic_auth_user != "" && basic_auth_password != "" {
209
+ agent_builder = agent_builder.basic_auth(basic_auth_user, basic_auth_password);
210
+ }
211
+
212
+ if scope_org_id != "" {
213
+ agent_builder = agent_builder.scope_org_id(scope_org_id);
214
+ }
215
+
216
+ let http_headers = pyroscope::pyroscope::parse_http_headers_json(http_headers_json);
217
+ match http_headers {
218
+ Ok(http_headers) => {
219
+ agent_builder = agent_builder.http_headers(http_headers);
220
+ }
221
+ Err(e) => {
222
+ match e {
223
+ pyroscope::PyroscopeError::Json(e) => {
224
+ log::error!(target: LOG_TAG, "parse_http_headers_json error {}", e);
225
+ }
226
+ pyroscope::PyroscopeError::AdHoc(e) => {
227
+ log::error!(target: LOG_TAG, "parse_http_headers_json {}", e);
228
+ }
229
+ _ => {}
230
+ }
231
+ }
173
232
  }
174
233
 
175
234
  if let Ok(compression) = compression {
@@ -0,0 +1,521 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "ansi_term"
7
+ version = "0.12.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
10
+ dependencies = [
11
+ "winapi",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "atty"
16
+ version = "0.2.14"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
19
+ dependencies = [
20
+ "hermit-abi 0.1.19",
21
+ "libc",
22
+ "winapi",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "autocfg"
27
+ version = "1.1.0"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
30
+
31
+ [[package]]
32
+ name = "bitflags"
33
+ version = "1.3.2"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
36
+
37
+ [[package]]
38
+ name = "cbindgen"
39
+ version = "0.20.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "51e3973b165dc0f435831a9e426de67e894de532754ff7a3f307c03ee5dec7dc"
42
+ dependencies = [
43
+ "clap",
44
+ "heck",
45
+ "indexmap",
46
+ "log",
47
+ "proc-macro2",
48
+ "quote",
49
+ "serde",
50
+ "serde_json",
51
+ "syn 1.0.109",
52
+ "tempfile",
53
+ "toml",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "cc"
58
+ version = "1.0.79"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
61
+
62
+ [[package]]
63
+ name = "cfg-if"
64
+ version = "1.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
67
+
68
+ [[package]]
69
+ name = "clap"
70
+ version = "2.34.0"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
73
+ dependencies = [
74
+ "ansi_term",
75
+ "atty",
76
+ "bitflags",
77
+ "strsim",
78
+ "textwrap",
79
+ "unicode-width",
80
+ "vec_map",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "errno"
85
+ version = "0.3.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
88
+ dependencies = [
89
+ "errno-dragonfly",
90
+ "libc",
91
+ "windows-sys 0.48.0",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "errno-dragonfly"
96
+ version = "0.1.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
99
+ dependencies = [
100
+ "cc",
101
+ "libc",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "fastrand"
106
+ version = "1.9.0"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
109
+ dependencies = [
110
+ "instant",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "hashbrown"
115
+ version = "0.12.3"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
118
+
119
+ [[package]]
120
+ name = "heck"
121
+ version = "0.3.3"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
124
+ dependencies = [
125
+ "unicode-segmentation",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "hermit-abi"
130
+ version = "0.1.19"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
133
+ dependencies = [
134
+ "libc",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "hermit-abi"
139
+ version = "0.3.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
142
+
143
+ [[package]]
144
+ name = "indexmap"
145
+ version = "1.9.3"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
148
+ dependencies = [
149
+ "autocfg",
150
+ "hashbrown",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "instant"
155
+ version = "0.1.12"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
158
+ dependencies = [
159
+ "cfg-if",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "io-lifetimes"
164
+ version = "1.0.10"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
167
+ dependencies = [
168
+ "hermit-abi 0.3.1",
169
+ "libc",
170
+ "windows-sys 0.48.0",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "itoa"
175
+ version = "1.0.6"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
178
+
179
+ [[package]]
180
+ name = "libc"
181
+ version = "0.2.142"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317"
184
+
185
+ [[package]]
186
+ name = "linux-raw-sys"
187
+ version = "0.3.4"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf"
190
+
191
+ [[package]]
192
+ name = "log"
193
+ version = "0.4.17"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
196
+ dependencies = [
197
+ "cfg-if",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "proc-macro2"
202
+ version = "1.0.56"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
205
+ dependencies = [
206
+ "unicode-ident",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "quote"
211
+ version = "1.0.26"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
214
+ dependencies = [
215
+ "proc-macro2",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "redox_syscall"
220
+ version = "0.3.5"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
223
+ dependencies = [
224
+ "bitflags",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "rustix"
229
+ version = "0.37.15"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "a0661814f891c57c930a610266415528da53c4933e6dea5fb350cbfe048a9ece"
232
+ dependencies = [
233
+ "bitflags",
234
+ "errno",
235
+ "io-lifetimes",
236
+ "libc",
237
+ "linux-raw-sys",
238
+ "windows-sys 0.48.0",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "ryu"
243
+ version = "1.0.13"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
246
+
247
+ [[package]]
248
+ name = "serde"
249
+ version = "1.0.160"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
252
+ dependencies = [
253
+ "serde_derive",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "serde_derive"
258
+ version = "1.0.160"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
261
+ dependencies = [
262
+ "proc-macro2",
263
+ "quote",
264
+ "syn 2.0.15",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "serde_json"
269
+ version = "1.0.96"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
272
+ dependencies = [
273
+ "itoa",
274
+ "ryu",
275
+ "serde",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "strsim"
280
+ version = "0.8.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
283
+
284
+ [[package]]
285
+ name = "syn"
286
+ version = "1.0.109"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
289
+ dependencies = [
290
+ "proc-macro2",
291
+ "quote",
292
+ "unicode-ident",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "syn"
297
+ version = "2.0.15"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
300
+ dependencies = [
301
+ "proc-macro2",
302
+ "quote",
303
+ "unicode-ident",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "tempfile"
308
+ version = "3.5.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
311
+ dependencies = [
312
+ "cfg-if",
313
+ "fastrand",
314
+ "redox_syscall",
315
+ "rustix",
316
+ "windows-sys 0.45.0",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "textwrap"
321
+ version = "0.11.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
324
+ dependencies = [
325
+ "unicode-width",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "thread_id"
330
+ version = "0.1.0"
331
+ dependencies = [
332
+ "cbindgen",
333
+ "libc",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "toml"
338
+ version = "0.5.11"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
341
+ dependencies = [
342
+ "serde",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "unicode-ident"
347
+ version = "1.0.8"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
350
+
351
+ [[package]]
352
+ name = "unicode-segmentation"
353
+ version = "1.10.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
356
+
357
+ [[package]]
358
+ name = "unicode-width"
359
+ version = "0.1.10"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
362
+
363
+ [[package]]
364
+ name = "vec_map"
365
+ version = "0.8.2"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
368
+
369
+ [[package]]
370
+ name = "winapi"
371
+ version = "0.3.9"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
374
+ dependencies = [
375
+ "winapi-i686-pc-windows-gnu",
376
+ "winapi-x86_64-pc-windows-gnu",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "winapi-i686-pc-windows-gnu"
381
+ version = "0.4.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
384
+
385
+ [[package]]
386
+ name = "winapi-x86_64-pc-windows-gnu"
387
+ version = "0.4.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
390
+
391
+ [[package]]
392
+ name = "windows-sys"
393
+ version = "0.45.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
396
+ dependencies = [
397
+ "windows-targets 0.42.2",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "windows-sys"
402
+ version = "0.48.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
405
+ dependencies = [
406
+ "windows-targets 0.48.0",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "windows-targets"
411
+ version = "0.42.2"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
414
+ dependencies = [
415
+ "windows_aarch64_gnullvm 0.42.2",
416
+ "windows_aarch64_msvc 0.42.2",
417
+ "windows_i686_gnu 0.42.2",
418
+ "windows_i686_msvc 0.42.2",
419
+ "windows_x86_64_gnu 0.42.2",
420
+ "windows_x86_64_gnullvm 0.42.2",
421
+ "windows_x86_64_msvc 0.42.2",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "windows-targets"
426
+ version = "0.48.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
429
+ dependencies = [
430
+ "windows_aarch64_gnullvm 0.48.0",
431
+ "windows_aarch64_msvc 0.48.0",
432
+ "windows_i686_gnu 0.48.0",
433
+ "windows_i686_msvc 0.48.0",
434
+ "windows_x86_64_gnu 0.48.0",
435
+ "windows_x86_64_gnullvm 0.48.0",
436
+ "windows_x86_64_msvc 0.48.0",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "windows_aarch64_gnullvm"
441
+ version = "0.42.2"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
444
+
445
+ [[package]]
446
+ name = "windows_aarch64_gnullvm"
447
+ version = "0.48.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
450
+
451
+ [[package]]
452
+ name = "windows_aarch64_msvc"
453
+ version = "0.42.2"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
456
+
457
+ [[package]]
458
+ name = "windows_aarch64_msvc"
459
+ version = "0.48.0"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
462
+
463
+ [[package]]
464
+ name = "windows_i686_gnu"
465
+ version = "0.42.2"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
468
+
469
+ [[package]]
470
+ name = "windows_i686_gnu"
471
+ version = "0.48.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
474
+
475
+ [[package]]
476
+ name = "windows_i686_msvc"
477
+ version = "0.42.2"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
480
+
481
+ [[package]]
482
+ name = "windows_i686_msvc"
483
+ version = "0.48.0"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
486
+
487
+ [[package]]
488
+ name = "windows_x86_64_gnu"
489
+ version = "0.42.2"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
492
+
493
+ [[package]]
494
+ name = "windows_x86_64_gnu"
495
+ version = "0.48.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
498
+
499
+ [[package]]
500
+ name = "windows_x86_64_gnullvm"
501
+ version = "0.42.2"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
504
+
505
+ [[package]]
506
+ name = "windows_x86_64_gnullvm"
507
+ version = "0.48.0"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
510
+
511
+ [[package]]
512
+ name = "windows_x86_64_msvc"
513
+ version = "0.42.2"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
516
+
517
+ [[package]]
518
+ name = "windows_x86_64_msvc"
519
+ version = "0.48.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
@@ -2,6 +2,7 @@
2
2
  name = "thread_id"
3
3
  version = "0.1.0"
4
4
  edition = "2021"
5
+ rust-version = "1.63"
5
6
 
6
7
  [lib]
7
8
  name = "thread_id"
@@ -1,3 +1,3 @@
1
1
  module Pyroscope
2
- VERSION = '0.5.1'.freeze
2
+ VERSION = '0.5.3'.freeze
3
3
  end