boreal-python 1.0.0__tar.gz → 1.2.0__tar.gz

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.
Files changed (128) hide show
  1. {boreal_python-1.0.0 → boreal_python-1.2.0}/Cargo.lock +270 -325
  2. {boreal_python-1.0.0 → boreal_python-1.2.0}/Cargo.toml +5 -0
  3. {boreal_python-1.0.0 → boreal_python-1.2.0}/PKG-INFO +3 -4
  4. {boreal_python-1.0.0/boreal-py/docs → boreal_python-1.2.0}/README.md +2 -0
  5. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/Cargo.toml +15 -15
  6. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/README.md +7 -11
  7. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/atoms.rs +10 -2
  8. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/bitmaps.rs +6 -4
  9. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/error.rs +9 -5
  10. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/expression.rs +8 -8
  11. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/mod.rs +18 -17
  12. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/module.rs +11 -9
  13. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/params.rs +36 -0
  14. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/rule.rs +2 -2
  15. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/tests.rs +1 -1
  16. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/variable.rs +2 -2
  17. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/entrypoint.rs +3 -3
  18. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/mod.rs +6 -11
  19. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/module.rs +2 -2
  20. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/analysis.rs +6 -6
  21. boreal_python-1.2.0/boreal/src/matcher/literals.rs +1274 -0
  22. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/mod.rs +1 -1
  23. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/only_literals.rs +1 -1
  24. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/raw.rs +2 -2
  25. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/validator/dfa.rs +2 -2
  26. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/validator/simple.rs +2 -6
  27. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/validator.rs +2 -2
  28. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/widener.rs +1 -1
  29. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/memory.rs +3 -7
  30. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/dotnet.rs +3 -3
  31. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/elf.rs +34 -40
  32. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/hash.rs +1 -1
  33. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/mod.rs +19 -15
  34. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/debug.rs +2 -2
  35. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures/asn1.rs +1 -1
  36. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures.rs +2 -2
  37. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/utils.rs +3 -7
  38. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe.rs +51 -19
  39. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/string.rs +6 -10
  40. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/regex/hir.rs +2 -2
  41. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/regex/mod.rs +2 -2
  42. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/regex/visitor.rs +1 -1
  43. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/ac_scan.rs +32 -3
  44. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/mod.rs +49 -32
  45. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/params.rs +1 -1
  46. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/linux.rs +2 -6
  47. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/macos.rs +2 -2
  48. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/windows.rs +26 -10
  49. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/test_helpers.rs +2 -2
  50. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/wire.rs +23 -17
  51. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/Cargo.toml +4 -4
  52. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/boolean_expression.rs +38 -19
  53. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/common.rs +2 -2
  54. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/mod.rs +0 -2
  55. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/primary_expression.rs +25 -10
  56. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/read_integer.rs +2 -2
  57. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/hex_string.rs +38 -13
  58. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/lib.rs +15 -1
  59. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/number.rs +4 -4
  60. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/regex.rs +43 -15
  61. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/rule.rs +21 -13
  62. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/test_helpers.rs +1 -14
  63. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/types.rs +87 -14
  64. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/Cargo.toml +6 -5
  65. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/README.md +2 -0
  66. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/boreal.pyi +2 -0
  67. {boreal_python-1.0.0 → boreal_python-1.2.0/boreal-py/docs}/README.md +2 -0
  68. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/docs/yara_compatibility_mode.md +1 -0
  69. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/mkdocs.yml +9 -1
  70. boreal_python-1.2.0/boreal-py/scripts/test-parallel.sh +9 -0
  71. boreal_python-1.2.0/boreal-py/scripts/test.sh +5 -0
  72. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/lib.rs +53 -16
  73. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/module.rs +1 -1
  74. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/rule.rs +1 -1
  75. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/scanner.rs +54 -41
  76. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/string_match_instance.rs +1 -1
  77. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/string_matches.rs +3 -3
  78. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/tests/test_api.py +6 -1
  79. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/tests/test_compile.py +96 -14
  80. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/tests/test_scanner.py +200 -78
  81. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/tests/test_types.py +102 -53
  82. boreal_python-1.2.0/boreal-py/tests/utils.py +45 -0
  83. boreal_python-1.2.0/boreal-py/uv.lock +762 -0
  84. {boreal_python-1.0.0 → boreal_python-1.2.0}/pyproject.toml +12 -8
  85. boreal_python-1.0.0/boreal/src/matcher/literals.rs +0 -901
  86. boreal_python-1.0.0/boreal-py/tests/utils.py +0 -16
  87. boreal_python-1.0.0/boreal-py/uv.lock +0 -694
  88. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/LICENSE-APACHE +0 -0
  89. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/LICENSE-MIT +0 -0
  90. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/bytes_pool.rs +0 -0
  91. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/builder.rs +0 -0
  92. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/compiler/external_symbol.rs +0 -0
  93. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/error.rs +0 -0
  94. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/read_integer.rs +0 -0
  95. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/evaluator/variable.rs +0 -0
  96. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/lib.rs +1 -1
  97. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/matcher/base64.rs +0 -0
  98. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/console.rs +0 -0
  99. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/cuckoo.rs +0 -0
  100. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/dex.rs +0 -0
  101. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/macho.rs +1 -1
  102. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/magic.rs +0 -0
  103. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/math.rs +0 -0
  104. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/ord.rs +0 -0
  105. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures/verify.rs +1 -1
  106. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/pe/version_info.rs +0 -0
  107. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/module/time.rs +0 -0
  108. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/error.rs +0 -0
  109. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  110. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys.rs +0 -0
  111. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/scanner/process.rs +0 -0
  112. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/statistics.rs +0 -0
  113. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal/src/timeout.rs +0 -0
  114. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/LICENSE-APACHE +0 -0
  115. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/LICENSE-MIT +0 -0
  116. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/README.md +0 -0
  117. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/error.rs +0 -0
  118. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/for_expression.rs +1 -1
  119. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/identifier.rs +2 -2
  120. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/expression/string_expression.rs +1 -1
  121. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/file.rs +1 -1
  122. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/nom_recipes.rs +1 -1
  123. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-parser/src/string.rs +1 -1
  124. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/docs/api.md +0 -0
  125. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/docs/griffe_customization.py +0 -0
  126. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/rule_match.rs +0 -0
  127. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/src/rule_string.rs +0 -0
  128. {boreal_python-1.0.0 → boreal_python-1.2.0}/boreal-py/tests/conftest.py +0 -0
@@ -1,21 +1,21 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "aho-corasick"
7
- version = "1.1.3"
7
+ version = "1.1.4"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
10
  dependencies = [
11
11
  "memchr",
12
12
  ]
13
13
 
14
14
  [[package]]
15
15
  name = "anstream"
16
- version = "0.6.18"
16
+ version = "1.0.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
19
  dependencies = [
20
20
  "anstyle",
21
21
  "anstyle-parse",
@@ -28,48 +28,47 @@ dependencies = [
28
28
 
29
29
  [[package]]
30
30
  name = "anstyle"
31
- version = "1.0.10"
31
+ version = "1.0.14"
32
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
34
 
35
35
  [[package]]
36
36
  name = "anstyle-parse"
37
- version = "0.2.6"
37
+ version = "1.0.0"
38
38
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
40
  dependencies = [
41
41
  "utf8parse",
42
42
  ]
43
43
 
44
44
  [[package]]
45
45
  name = "anstyle-query"
46
- version = "1.1.2"
46
+ version = "1.1.5"
47
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
49
  dependencies = [
50
50
  "windows-sys",
51
51
  ]
52
52
 
53
53
  [[package]]
54
54
  name = "anstyle-wincon"
55
- version = "3.0.7"
55
+ version = "3.0.11"
56
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
58
  dependencies = [
59
59
  "anstyle",
60
- "once_cell",
60
+ "once_cell_polyfill",
61
61
  "windows-sys",
62
62
  ]
63
63
 
64
64
  [[package]]
65
65
  name = "assert_cmd"
66
- version = "2.0.17"
66
+ version = "2.2.2"
67
67
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
68
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
69
69
  dependencies = [
70
70
  "anstyle",
71
71
  "bstr",
72
- "doc-comment",
73
72
  "libc",
74
73
  "predicates",
75
74
  "predicates-core",
@@ -79,9 +78,9 @@ dependencies = [
79
78
 
80
79
  [[package]]
81
80
  name = "autocfg"
82
- version = "1.4.0"
81
+ version = "1.5.1"
83
82
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
83
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
85
84
 
86
85
  [[package]]
87
86
  name = "base16ct"
@@ -97,35 +96,33 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
97
96
 
98
97
  [[package]]
99
98
  name = "base64ct"
100
- version = "1.6.0"
99
+ version = "1.8.3"
101
100
  source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
101
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
103
102
 
104
103
  [[package]]
105
104
  name = "bindgen"
106
- version = "0.68.1"
105
+ version = "0.72.1"
107
106
  source = "registry+https://github.com/rust-lang/crates.io-index"
108
- checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078"
107
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
109
108
  dependencies = [
110
109
  "bitflags",
111
110
  "cexpr",
112
111
  "clang-sys",
113
- "lazy_static",
114
- "lazycell",
115
- "peeking_take_while",
112
+ "itertools",
116
113
  "proc-macro2",
117
114
  "quote",
118
115
  "regex",
119
116
  "rustc-hash",
120
- "shlex",
117
+ "shlex 1.3.0",
121
118
  "syn",
122
119
  ]
123
120
 
124
121
  [[package]]
125
122
  name = "bitflags"
126
- version = "2.9.1"
123
+ version = "2.13.1"
127
124
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
125
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
129
126
 
130
127
  [[package]]
131
128
  name = "block-buffer"
@@ -138,7 +135,7 @@ dependencies = [
138
135
 
139
136
  [[package]]
140
137
  name = "boreal"
141
- version = "1.0.0"
138
+ version = "1.2.0"
142
139
  dependencies = [
143
140
  "aho-corasick",
144
141
  "base64",
@@ -174,7 +171,7 @@ dependencies = [
174
171
 
175
172
  [[package]]
176
173
  name = "boreal-cli"
177
- version = "1.0.0"
174
+ version = "1.2.0"
178
175
  dependencies = [
179
176
  "assert_cmd",
180
177
  "boreal",
@@ -189,7 +186,7 @@ dependencies = [
189
186
 
190
187
  [[package]]
191
188
  name = "boreal-parser"
192
- version = "1.0.0"
189
+ version = "1.2.0"
193
190
  dependencies = [
194
191
  "codespan-reporting",
195
192
  "nom 8.0.0",
@@ -197,9 +194,10 @@ dependencies = [
197
194
 
198
195
  [[package]]
199
196
  name = "boreal-py"
200
- version = "1.0.0"
197
+ version = "1.2.0"
201
198
  dependencies = [
202
199
  "boreal",
200
+ "parking_lot",
203
201
  "pyo3",
204
202
  ]
205
203
 
@@ -213,37 +211,39 @@ dependencies = [
213
211
 
214
212
  [[package]]
215
213
  name = "borsh"
216
- version = "1.5.7"
214
+ version = "1.7.0"
217
215
  source = "registry+https://github.com/rust-lang/crates.io-index"
218
- checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
216
+ checksum = "2f3f6da4992df95bbcd9af42a6c7dcb994498fc9048230405f3b36ff7cd3f145"
219
217
  dependencies = [
218
+ "bytes",
220
219
  "cfg_aliases",
221
220
  ]
222
221
 
223
222
  [[package]]
224
223
  name = "bstr"
225
- version = "1.12.0"
224
+ version = "1.13.0"
226
225
  source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
226
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
228
227
  dependencies = [
229
228
  "memchr",
230
229
  "regex-automata",
231
- "serde",
230
+ "serde_core",
232
231
  ]
233
232
 
234
233
  [[package]]
235
- name = "byteorder"
236
- version = "1.5.0"
234
+ name = "bytes"
235
+ version = "1.12.1"
237
236
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
- checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
237
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
239
238
 
240
239
  [[package]]
241
240
  name = "cc"
242
- version = "1.2.23"
241
+ version = "1.2.67"
243
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
243
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
245
244
  dependencies = [
246
- "shlex",
245
+ "find-msvc-tools",
246
+ "shlex 2.0.1",
247
247
  ]
248
248
 
249
249
  [[package]]
@@ -257,9 +257,9 @@ dependencies = [
257
257
 
258
258
  [[package]]
259
259
  name = "cfg-if"
260
- version = "1.0.0"
260
+ version = "1.0.4"
261
261
  source = "registry+https://github.com/rust-lang/crates.io-index"
262
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
262
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
263
263
 
264
264
  [[package]]
265
265
  name = "cfg_aliases"
@@ -280,18 +280,18 @@ dependencies = [
280
280
 
281
281
  [[package]]
282
282
  name = "clap"
283
- version = "4.5.38"
283
+ version = "4.6.2"
284
284
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
285
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
286
286
  dependencies = [
287
287
  "clap_builder",
288
288
  ]
289
289
 
290
290
  [[package]]
291
291
  name = "clap_builder"
292
- version = "4.5.38"
292
+ version = "4.6.2"
293
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
294
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
295
295
  dependencies = [
296
296
  "anstream",
297
297
  "anstyle",
@@ -301,15 +301,15 @@ dependencies = [
301
301
 
302
302
  [[package]]
303
303
  name = "clap_lex"
304
- version = "0.7.4"
304
+ version = "1.1.0"
305
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
306
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
306
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
307
307
 
308
308
  [[package]]
309
309
  name = "codespan-reporting"
310
- version = "0.12.0"
310
+ version = "0.13.1"
311
311
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
- checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
312
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
313
313
  dependencies = [
314
314
  "serde",
315
315
  "termcolor",
@@ -318,9 +318,9 @@ dependencies = [
318
318
 
319
319
  [[package]]
320
320
  name = "colorchoice"
321
- version = "1.0.3"
321
+ version = "1.0.5"
322
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
323
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
324
324
 
325
325
  [[package]]
326
326
  name = "const-oid"
@@ -339,27 +339,27 @@ dependencies = [
339
339
 
340
340
  [[package]]
341
341
  name = "crc32fast"
342
- version = "1.4.2"
342
+ version = "1.5.0"
343
343
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
344
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
345
345
  dependencies = [
346
346
  "cfg-if",
347
347
  ]
348
348
 
349
349
  [[package]]
350
350
  name = "crossbeam-channel"
351
- version = "0.5.15"
351
+ version = "0.5.16"
352
352
  source = "registry+https://github.com/rust-lang/crates.io-index"
353
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
353
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
354
354
  dependencies = [
355
355
  "crossbeam-utils",
356
356
  ]
357
357
 
358
358
  [[package]]
359
359
  name = "crossbeam-utils"
360
- version = "0.8.21"
360
+ version = "0.8.22"
361
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
362
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
363
363
 
364
364
  [[package]]
365
365
  name = "crypto-bigint"
@@ -424,12 +424,6 @@ dependencies = [
424
424
  "subtle",
425
425
  ]
426
426
 
427
- [[package]]
428
- name = "doc-comment"
429
- version = "0.3.3"
430
- source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
432
-
433
427
  [[package]]
434
428
  name = "dsa"
435
429
  version = "0.6.3"
@@ -459,6 +453,12 @@ dependencies = [
459
453
  "signature",
460
454
  ]
461
455
 
456
+ [[package]]
457
+ name = "either"
458
+ version = "1.16.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
461
+
462
462
  [[package]]
463
463
  name = "elliptic-curve"
464
464
  version = "0.13.8"
@@ -481,9 +481,9 @@ dependencies = [
481
481
 
482
482
  [[package]]
483
483
  name = "errno"
484
- version = "0.3.12"
484
+ version = "0.3.14"
485
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
486
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
487
487
  dependencies = [
488
488
  "libc",
489
489
  "windows-sys",
@@ -491,9 +491,9 @@ dependencies = [
491
491
 
492
492
  [[package]]
493
493
  name = "fastrand"
494
- version = "2.3.0"
494
+ version = "2.4.1"
495
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
496
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
497
497
 
498
498
  [[package]]
499
499
  name = "ff"
@@ -505,6 +505,12 @@ dependencies = [
505
505
  "subtle",
506
506
  ]
507
507
 
508
+ [[package]]
509
+ name = "find-msvc-tools"
510
+ version = "0.1.9"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
513
+
508
514
  [[package]]
509
515
  name = "fs_extra"
510
516
  version = "1.3.0"
@@ -513,32 +519,20 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
513
519
 
514
520
  [[package]]
515
521
  name = "generic-array"
516
- version = "0.14.7"
522
+ version = "0.14.9"
517
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
524
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
519
525
  dependencies = [
520
526
  "typenum",
521
527
  "version_check",
522
528
  "zeroize",
523
529
  ]
524
530
 
525
- [[package]]
526
- name = "getrandom"
527
- version = "0.3.3"
528
- source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
530
- dependencies = [
531
- "cfg-if",
532
- "libc",
533
- "r-efi",
534
- "wasi",
535
- ]
536
-
537
531
  [[package]]
538
532
  name = "glob"
539
- version = "0.3.2"
533
+ version = "0.3.3"
540
534
  source = "registry+https://github.com/rust-lang/crates.io-index"
541
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
535
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
542
536
 
543
537
  [[package]]
544
538
  name = "group"
@@ -573,22 +567,25 @@ dependencies = [
573
567
  ]
574
568
 
575
569
  [[package]]
576
- name = "indoc"
577
- version = "2.0.6"
570
+ name = "is_terminal_polyfill"
571
+ version = "1.70.2"
578
572
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
573
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
580
574
 
581
575
  [[package]]
582
- name = "is_terminal_polyfill"
583
- version = "1.70.1"
576
+ name = "itertools"
577
+ version = "0.13.0"
584
578
  source = "registry+https://github.com/rust-lang/crates.io-index"
585
- checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
579
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
580
+ dependencies = [
581
+ "either",
582
+ ]
586
583
 
587
584
  [[package]]
588
585
  name = "itoa"
589
- version = "1.0.15"
586
+ version = "1.0.18"
590
587
  source = "registry+https://github.com/rust-lang/crates.io-index"
591
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
588
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
592
589
 
593
590
  [[package]]
594
591
  name = "lazy_static"
@@ -599,59 +596,57 @@ dependencies = [
599
596
  "spin",
600
597
  ]
601
598
 
602
- [[package]]
603
- name = "lazycell"
604
- version = "1.3.0"
605
- source = "registry+https://github.com/rust-lang/crates.io-index"
606
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
607
-
608
599
  [[package]]
609
600
  name = "libc"
610
- version = "0.2.172"
601
+ version = "0.2.186"
611
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
603
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
613
604
 
614
605
  [[package]]
615
606
  name = "libloading"
616
- version = "0.8.7"
607
+ version = "0.8.9"
617
608
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
609
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
619
610
  dependencies = [
620
611
  "cfg-if",
621
- "windows-targets",
612
+ "windows-link",
622
613
  ]
623
614
 
624
615
  [[package]]
625
616
  name = "libm"
626
- version = "0.2.15"
617
+ version = "0.2.16"
627
618
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
619
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
629
620
 
630
621
  [[package]]
631
622
  name = "linux-raw-sys"
632
- version = "0.9.4"
623
+ version = "0.12.1"
633
624
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
625
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
635
626
 
636
627
  [[package]]
637
- name = "mach2"
638
- version = "0.4.2"
628
+ name = "lock_api"
629
+ version = "0.4.14"
639
630
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
631
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
641
632
  dependencies = [
642
- "libc",
633
+ "scopeguard",
643
634
  ]
644
635
 
636
+ [[package]]
637
+ name = "mach2"
638
+ version = "0.6.0"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "dae608c151f68243f2b000364e1f7b186d9c29845f7d2d85bd31b9ad77ad552b"
641
+
645
642
  [[package]]
646
643
  name = "magic"
647
- version = "0.16.2"
644
+ version = "0.16.7"
648
645
  source = "registry+https://github.com/rust-lang/crates.io-index"
649
- checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
646
+ checksum = "50ecbc2953846d9a3f8f6ed0700e66e49e5ad696eefb4e17fbaebbf457e1e752"
650
647
  dependencies = [
651
648
  "bitflags",
652
- "libc",
653
649
  "magic-sys",
654
- "thiserror",
655
650
  ]
656
651
 
657
652
  [[package]]
@@ -676,28 +671,19 @@ dependencies = [
676
671
 
677
672
  [[package]]
678
673
  name = "memchr"
679
- version = "2.7.4"
674
+ version = "2.8.3"
680
675
  source = "registry+https://github.com/rust-lang/crates.io-index"
681
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
676
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
682
677
 
683
678
  [[package]]
684
679
  name = "memmap2"
685
- version = "0.9.5"
680
+ version = "0.9.11"
686
681
  source = "registry+https://github.com/rust-lang/crates.io-index"
687
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
682
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
688
683
  dependencies = [
689
684
  "libc",
690
685
  ]
691
686
 
692
- [[package]]
693
- name = "memoffset"
694
- version = "0.9.1"
695
- source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
697
- dependencies = [
698
- "autocfg",
699
- ]
700
-
701
687
  [[package]]
702
688
  name = "minimal-lexical"
703
689
  version = "0.2.1"
@@ -725,11 +711,10 @@ dependencies = [
725
711
 
726
712
  [[package]]
727
713
  name = "num-bigint-dig"
728
- version = "0.8.4"
714
+ version = "0.8.6"
729
715
  source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
716
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
731
717
  dependencies = [
732
- "byteorder",
733
718
  "lazy_static",
734
719
  "libm",
735
720
  "num-integer",
@@ -751,11 +736,10 @@ dependencies = [
751
736
 
752
737
  [[package]]
753
738
  name = "num-iter"
754
- version = "0.1.45"
739
+ version = "0.1.46"
755
740
  source = "registry+https://github.com/rust-lang/crates.io-index"
756
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
741
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
757
742
  dependencies = [
758
- "autocfg",
759
743
  "num-integer",
760
744
  "num-traits",
761
745
  ]
@@ -772,18 +756,24 @@ dependencies = [
772
756
 
773
757
  [[package]]
774
758
  name = "object"
775
- version = "0.36.7"
759
+ version = "0.39.1"
776
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
777
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
761
+ checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
778
762
  dependencies = [
779
763
  "memchr",
780
764
  ]
781
765
 
782
766
  [[package]]
783
767
  name = "once_cell"
784
- version = "1.21.3"
768
+ version = "1.21.4"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
771
+
772
+ [[package]]
773
+ name = "once_cell_polyfill"
774
+ version = "1.70.2"
785
775
  source = "registry+https://github.com/rust-lang/crates.io-index"
786
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
776
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
787
777
 
788
778
  [[package]]
789
779
  name = "p256"
@@ -810,10 +800,27 @@ dependencies = [
810
800
  ]
811
801
 
812
802
  [[package]]
813
- name = "peeking_take_while"
814
- version = "0.1.2"
803
+ name = "parking_lot"
804
+ version = "0.12.5"
815
805
  source = "registry+https://github.com/rust-lang/crates.io-index"
816
- checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
806
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
807
+ dependencies = [
808
+ "lock_api",
809
+ "parking_lot_core",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "parking_lot_core"
814
+ version = "0.9.12"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
817
+ dependencies = [
818
+ "cfg-if",
819
+ "libc",
820
+ "redox_syscall",
821
+ "smallvec",
822
+ "windows-link",
823
+ ]
817
824
 
818
825
  [[package]]
819
826
  name = "pem-rfc7468"
@@ -847,9 +854,9 @@ dependencies = [
847
854
 
848
855
  [[package]]
849
856
  name = "portable-atomic"
850
- version = "1.11.0"
857
+ version = "1.13.1"
851
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
852
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
859
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
853
860
 
854
861
  [[package]]
855
862
  name = "ppv-lite86"
@@ -862,9 +869,9 @@ dependencies = [
862
869
 
863
870
  [[package]]
864
871
  name = "predicates"
865
- version = "3.1.3"
872
+ version = "3.1.4"
866
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
867
- checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
874
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
868
875
  dependencies = [
869
876
  "anstyle",
870
877
  "difflib",
@@ -874,15 +881,15 @@ dependencies = [
874
881
 
875
882
  [[package]]
876
883
  name = "predicates-core"
877
- version = "1.0.9"
884
+ version = "1.0.10"
878
885
  source = "registry+https://github.com/rust-lang/crates.io-index"
879
- checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
886
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
880
887
 
881
888
  [[package]]
882
889
  name = "predicates-tree"
883
- version = "1.0.12"
890
+ version = "1.0.13"
884
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
885
- checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
892
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
886
893
  dependencies = [
887
894
  "predicates-core",
888
895
  "termtree",
@@ -899,45 +906,41 @@ dependencies = [
899
906
 
900
907
  [[package]]
901
908
  name = "proc-macro2"
902
- version = "1.0.95"
909
+ version = "1.0.106"
903
910
  source = "registry+https://github.com/rust-lang/crates.io-index"
904
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
911
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
905
912
  dependencies = [
906
913
  "unicode-ident",
907
914
  ]
908
915
 
909
916
  [[package]]
910
917
  name = "pyo3"
911
- version = "0.25.0"
918
+ version = "0.29.0"
912
919
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
920
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
914
921
  dependencies = [
915
- "indoc",
916
922
  "libc",
917
- "memoffset",
918
923
  "once_cell",
919
924
  "portable-atomic",
920
925
  "pyo3-build-config",
921
926
  "pyo3-ffi",
922
927
  "pyo3-macros",
923
- "unindent",
924
928
  ]
925
929
 
926
930
  [[package]]
927
931
  name = "pyo3-build-config"
928
- version = "0.25.0"
932
+ version = "0.29.0"
929
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
934
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
931
935
  dependencies = [
932
- "once_cell",
933
936
  "target-lexicon",
934
937
  ]
935
938
 
936
939
  [[package]]
937
940
  name = "pyo3-ffi"
938
- version = "0.25.0"
941
+ version = "0.29.0"
939
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
940
- checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
943
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
941
944
  dependencies = [
942
945
  "libc",
943
946
  "pyo3-build-config",
@@ -945,9 +948,9 @@ dependencies = [
945
948
 
946
949
  [[package]]
947
950
  name = "pyo3-macros"
948
- version = "0.25.0"
951
+ version = "0.29.0"
949
952
  source = "registry+https://github.com/rust-lang/crates.io-index"
950
- checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
953
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
951
954
  dependencies = [
952
955
  "proc-macro2",
953
956
  "pyo3-macros-backend",
@@ -957,37 +960,30 @@ dependencies = [
957
960
 
958
961
  [[package]]
959
962
  name = "pyo3-macros-backend"
960
- version = "0.25.0"
963
+ version = "0.29.0"
961
964
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
965
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
963
966
  dependencies = [
964
967
  "heck",
965
968
  "proc-macro2",
966
- "pyo3-build-config",
967
969
  "quote",
968
970
  "syn",
969
971
  ]
970
972
 
971
973
  [[package]]
972
974
  name = "quote"
973
- version = "1.0.40"
975
+ version = "1.0.46"
974
976
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
977
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
976
978
  dependencies = [
977
979
  "proc-macro2",
978
980
  ]
979
981
 
980
- [[package]]
981
- name = "r-efi"
982
- version = "5.2.0"
983
- source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
985
-
986
982
  [[package]]
987
983
  name = "rand"
988
- version = "0.8.5"
984
+ version = "0.8.7"
989
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
990
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
986
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
991
987
  dependencies = [
992
988
  "rand_chacha",
993
989
  "rand_core",
@@ -1009,11 +1005,20 @@ version = "0.6.4"
1009
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
1006
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1011
1007
 
1008
+ [[package]]
1009
+ name = "redox_syscall"
1010
+ version = "0.5.18"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1013
+ dependencies = [
1014
+ "bitflags",
1015
+ ]
1016
+
1012
1017
  [[package]]
1013
1018
  name = "regex"
1014
- version = "1.11.1"
1019
+ version = "1.13.1"
1015
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1021
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1017
1022
  dependencies = [
1018
1023
  "aho-corasick",
1019
1024
  "memchr",
@@ -1023,9 +1028,9 @@ dependencies = [
1023
1028
 
1024
1029
  [[package]]
1025
1030
  name = "regex-automata"
1026
- version = "0.4.9"
1031
+ version = "0.4.16"
1027
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1033
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1029
1034
  dependencies = [
1030
1035
  "aho-corasick",
1031
1036
  "memchr",
@@ -1034,9 +1039,9 @@ dependencies = [
1034
1039
 
1035
1040
  [[package]]
1036
1041
  name = "regex-syntax"
1037
- version = "0.8.5"
1042
+ version = "0.8.11"
1038
1043
  source = "registry+https://github.com/rust-lang/crates.io-index"
1039
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1044
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1040
1045
 
1041
1046
  [[package]]
1042
1047
  name = "rfc6979"
@@ -1050,9 +1055,9 @@ dependencies = [
1050
1055
 
1051
1056
  [[package]]
1052
1057
  name = "rsa"
1053
- version = "0.9.8"
1058
+ version = "0.9.10"
1054
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1055
- checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
1060
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1056
1061
  dependencies = [
1057
1062
  "const-oid",
1058
1063
  "digest",
@@ -1070,15 +1075,15 @@ dependencies = [
1070
1075
 
1071
1076
  [[package]]
1072
1077
  name = "rustc-hash"
1073
- version = "1.1.0"
1078
+ version = "2.1.3"
1074
1079
  source = "registry+https://github.com/rust-lang/crates.io-index"
1075
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1080
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1076
1081
 
1077
1082
  [[package]]
1078
1083
  name = "rustix"
1079
- version = "1.0.7"
1084
+ version = "1.1.4"
1080
1085
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1086
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1082
1087
  dependencies = [
1083
1088
  "bitflags",
1084
1089
  "errno",
@@ -1087,12 +1092,6 @@ dependencies = [
1087
1092
  "windows-sys",
1088
1093
  ]
1089
1094
 
1090
- [[package]]
1091
- name = "ryu"
1092
- version = "1.0.20"
1093
- source = "registry+https://github.com/rust-lang/crates.io-index"
1094
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1095
-
1096
1095
  [[package]]
1097
1096
  name = "same-file"
1098
1097
  version = "1.0.6"
@@ -1102,6 +1101,12 @@ dependencies = [
1102
1101
  "winapi-util",
1103
1102
  ]
1104
1103
 
1104
+ [[package]]
1105
+ name = "scopeguard"
1106
+ version = "1.2.0"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1109
+
1105
1110
  [[package]]
1106
1111
  name = "sec1"
1107
1112
  version = "0.7.3"
@@ -1118,18 +1123,28 @@ dependencies = [
1118
1123
 
1119
1124
  [[package]]
1120
1125
  name = "serde"
1121
- version = "1.0.219"
1126
+ version = "1.0.228"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1129
+ dependencies = [
1130
+ "serde_core",
1131
+ "serde_derive",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "serde_core"
1136
+ version = "1.0.228"
1122
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
1123
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1138
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1124
1139
  dependencies = [
1125
1140
  "serde_derive",
1126
1141
  ]
1127
1142
 
1128
1143
  [[package]]
1129
1144
  name = "serde_derive"
1130
- version = "1.0.219"
1145
+ version = "1.0.228"
1131
1146
  source = "registry+https://github.com/rust-lang/crates.io-index"
1132
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1147
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1133
1148
  dependencies = [
1134
1149
  "proc-macro2",
1135
1150
  "quote",
@@ -1138,14 +1153,15 @@ dependencies = [
1138
1153
 
1139
1154
  [[package]]
1140
1155
  name = "serde_json"
1141
- version = "1.0.140"
1156
+ version = "1.0.150"
1142
1157
  source = "registry+https://github.com/rust-lang/crates.io-index"
1143
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1158
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1144
1159
  dependencies = [
1145
1160
  "itoa",
1146
1161
  "memchr",
1147
- "ryu",
1148
1162
  "serde",
1163
+ "serde_core",
1164
+ "zmij",
1149
1165
  ]
1150
1166
 
1151
1167
  [[package]]
@@ -1176,6 +1192,12 @@ version = "1.3.0"
1176
1192
  source = "registry+https://github.com/rust-lang/crates.io-index"
1177
1193
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1178
1194
 
1195
+ [[package]]
1196
+ name = "shlex"
1197
+ version = "2.0.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1200
+
1179
1201
  [[package]]
1180
1202
  name = "signature"
1181
1203
  version = "2.2.0"
@@ -1188,15 +1210,15 @@ dependencies = [
1188
1210
 
1189
1211
  [[package]]
1190
1212
  name = "smallvec"
1191
- version = "1.15.0"
1213
+ version = "1.15.2"
1192
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1193
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
1215
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1194
1216
 
1195
1217
  [[package]]
1196
1218
  name = "spin"
1197
- version = "0.9.8"
1219
+ version = "0.9.9"
1198
1220
  source = "registry+https://github.com/rust-lang/crates.io-index"
1199
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1221
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1200
1222
 
1201
1223
  [[package]]
1202
1224
  name = "spki"
@@ -1222,9 +1244,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1222
1244
 
1223
1245
  [[package]]
1224
1246
  name = "syn"
1225
- version = "2.0.101"
1247
+ version = "2.0.119"
1226
1248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1227
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1249
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1228
1250
  dependencies = [
1229
1251
  "proc-macro2",
1230
1252
  "quote",
@@ -1233,18 +1255,17 @@ dependencies = [
1233
1255
 
1234
1256
  [[package]]
1235
1257
  name = "target-lexicon"
1236
- version = "0.13.2"
1258
+ version = "0.13.5"
1237
1259
  source = "registry+https://github.com/rust-lang/crates.io-index"
1238
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1260
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1239
1261
 
1240
1262
  [[package]]
1241
1263
  name = "tempfile"
1242
- version = "3.20.0"
1264
+ version = "3.27.0"
1243
1265
  source = "registry+https://github.com/rust-lang/crates.io-index"
1244
- checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1266
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1245
1267
  dependencies = [
1246
1268
  "fastrand",
1247
- "getrandom",
1248
1269
  "once_cell",
1249
1270
  "rustix",
1250
1271
  "windows-sys",
@@ -1287,33 +1308,27 @@ dependencies = [
1287
1308
 
1288
1309
  [[package]]
1289
1310
  name = "tlsh2"
1290
- version = "0.4.0"
1311
+ version = "1.1.0"
1291
1312
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "0d1ca7b6482798eaf06ef6a4a5e1211e370758888698cfff4a53142441ef5143"
1313
+ checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
1293
1314
 
1294
1315
  [[package]]
1295
1316
  name = "typenum"
1296
- version = "1.18.0"
1317
+ version = "1.20.1"
1297
1318
  source = "registry+https://github.com/rust-lang/crates.io-index"
1298
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1319
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1299
1320
 
1300
1321
  [[package]]
1301
1322
  name = "unicode-ident"
1302
- version = "1.0.18"
1323
+ version = "1.0.24"
1303
1324
  source = "registry+https://github.com/rust-lang/crates.io-index"
1304
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1325
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1305
1326
 
1306
1327
  [[package]]
1307
1328
  name = "unicode-width"
1308
- version = "0.2.0"
1309
- source = "registry+https://github.com/rust-lang/crates.io-index"
1310
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1311
-
1312
- [[package]]
1313
- name = "unindent"
1314
- version = "0.2.4"
1329
+ version = "0.2.2"
1315
1330
  source = "registry+https://github.com/rust-lang/crates.io-index"
1316
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1331
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1317
1332
 
1318
1333
  [[package]]
1319
1334
  name = "utf8parse"
@@ -1352,111 +1367,35 @@ dependencies = [
1352
1367
  "winapi-util",
1353
1368
  ]
1354
1369
 
1355
- [[package]]
1356
- name = "wasi"
1357
- version = "0.14.2+wasi-0.2.4"
1358
- source = "registry+https://github.com/rust-lang/crates.io-index"
1359
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1360
- dependencies = [
1361
- "wit-bindgen-rt",
1362
- ]
1363
-
1364
1370
  [[package]]
1365
1371
  name = "winapi-util"
1366
- version = "0.1.9"
1372
+ version = "0.1.11"
1367
1373
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1374
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1369
1375
  dependencies = [
1370
1376
  "windows-sys",
1371
1377
  ]
1372
1378
 
1373
1379
  [[package]]
1374
- name = "windows-sys"
1375
- version = "0.59.0"
1376
- source = "registry+https://github.com/rust-lang/crates.io-index"
1377
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1378
- dependencies = [
1379
- "windows-targets",
1380
- ]
1381
-
1382
- [[package]]
1383
- name = "windows-targets"
1384
- version = "0.52.6"
1385
- source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1387
- dependencies = [
1388
- "windows_aarch64_gnullvm",
1389
- "windows_aarch64_msvc",
1390
- "windows_i686_gnu",
1391
- "windows_i686_gnullvm",
1392
- "windows_i686_msvc",
1393
- "windows_x86_64_gnu",
1394
- "windows_x86_64_gnullvm",
1395
- "windows_x86_64_msvc",
1396
- ]
1397
-
1398
- [[package]]
1399
- name = "windows_aarch64_gnullvm"
1400
- version = "0.52.6"
1401
- source = "registry+https://github.com/rust-lang/crates.io-index"
1402
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1403
-
1404
- [[package]]
1405
- name = "windows_aarch64_msvc"
1406
- version = "0.52.6"
1407
- source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1409
-
1410
- [[package]]
1411
- name = "windows_i686_gnu"
1412
- version = "0.52.6"
1413
- source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1415
-
1416
- [[package]]
1417
- name = "windows_i686_gnullvm"
1418
- version = "0.52.6"
1419
- source = "registry+https://github.com/rust-lang/crates.io-index"
1420
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1421
-
1422
- [[package]]
1423
- name = "windows_i686_msvc"
1424
- version = "0.52.6"
1425
- source = "registry+https://github.com/rust-lang/crates.io-index"
1426
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1427
-
1428
- [[package]]
1429
- name = "windows_x86_64_gnu"
1430
- version = "0.52.6"
1431
- source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1433
-
1434
- [[package]]
1435
- name = "windows_x86_64_gnullvm"
1436
- version = "0.52.6"
1437
- source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1439
-
1440
- [[package]]
1441
- name = "windows_x86_64_msvc"
1442
- version = "0.52.6"
1380
+ name = "windows-link"
1381
+ version = "0.2.1"
1443
1382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1383
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1445
1384
 
1446
1385
  [[package]]
1447
- name = "wit-bindgen-rt"
1448
- version = "0.39.0"
1386
+ name = "windows-sys"
1387
+ version = "0.61.2"
1449
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1450
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1389
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1451
1390
  dependencies = [
1452
- "bitflags",
1391
+ "windows-link",
1453
1392
  ]
1454
1393
 
1455
1394
  [[package]]
1456
1395
  name = "yara"
1457
- version = "0.30.0"
1396
+ version = "0.32.0"
1458
1397
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "2860d5b9e61e482a7bb3481ae4375e9c551dc07afaf15c2172dd81009f01686c"
1398
+ checksum = "b3caead5c2f89f36a59da301b0ad42e6c096b957db0b4adc60e05aae74c2c3ac"
1460
1399
  dependencies = [
1461
1400
  "bitflags",
1462
1401
  "thiserror",
@@ -1465,9 +1404,9 @@ dependencies = [
1465
1404
 
1466
1405
  [[package]]
1467
1406
  name = "yara-sys"
1468
- version = "0.29.0"
1407
+ version = "0.32.0"
1469
1408
  source = "registry+https://github.com/rust-lang/crates.io-index"
1470
- checksum = "bbeb5b2ed726cb3786945423539732a681ce2eb9911ee5e7548fad7ca96b0731"
1409
+ checksum = "ba8598e7b8b80190eddb1e030e87e4051f2fec79df901748a9257a4a59fcc3e5"
1471
1410
  dependencies = [
1472
1411
  "bindgen",
1473
1412
  "cc",
@@ -1477,18 +1416,18 @@ dependencies = [
1477
1416
 
1478
1417
  [[package]]
1479
1418
  name = "zerocopy"
1480
- version = "0.8.25"
1419
+ version = "0.8.54"
1481
1420
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
1421
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1483
1422
  dependencies = [
1484
1423
  "zerocopy-derive",
1485
1424
  ]
1486
1425
 
1487
1426
  [[package]]
1488
1427
  name = "zerocopy-derive"
1489
- version = "0.8.25"
1428
+ version = "0.8.54"
1490
1429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1491
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
1430
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1492
1431
  dependencies = [
1493
1432
  "proc-macro2",
1494
1433
  "quote",
@@ -1497,6 +1436,12 @@ dependencies = [
1497
1436
 
1498
1437
  [[package]]
1499
1438
  name = "zeroize"
1500
- version = "1.8.1"
1439
+ version = "1.9.0"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1442
+
1443
+ [[package]]
1444
+ name = "zmij"
1445
+ version = "1.0.23"
1501
1446
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
1447
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"