@aws/cloudformation-validate 1.1.0-beta → 1.3.0-beta

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # bindings-wasm
1
+ # CloudFormation Validate WASM Bindings
2
2
 
3
3
  WASM bindings for [`cloudformation-validate`](https://github.com/aws-cloudformation/cloudformation-validate). Compiles
4
4
  the full validation pipeline —
@@ -6,13 +6,16 @@ template parser, schema validator, Rego engine, and CEL engine — into a single
6
6
 
7
7
  All WASM objects must be explicitly freed via `.free()` to release memory.
8
8
 
9
+ For a complete, runnable example, see
10
+ [examples](https://github.com/aws-cloudformation/cloudformation-validate/tree/main/src/bindings-wasm/examples).
11
+
9
12
  ## Engine
10
13
 
11
14
  `RegoEngine` and `CelEngine` both implement the `Engine` interface. They are interchangeable — both produce identical
12
15
  diagnostics for the same template and config.
13
16
 
14
17
  ```typescript
15
- import {RegoEngine, CelEngine, TemplateFile} from "@aws/cloudformation-validate";
18
+ import { RegoEngine, CelEngine, TemplateFile } from "@aws/cloudformation-validate";
16
19
 
17
20
  const engine = new RegoEngine();
18
21
  const report = engine.validateStandard(new TemplateFile("template.yaml"));
@@ -62,7 +65,7 @@ interface ValidateConfig {
62
65
  parameterOverrides?: Record<string, string>;
63
66
  pseudoParameterOverrides?: PseudoParameterOverrides;
64
67
  strict?: boolean;
65
- includeEngineRules?: boolean;
68
+ disableBuiltinRules?: boolean;
66
69
  }
67
70
  ```
68
71
 
@@ -74,7 +77,7 @@ interface ValidateConfig {
74
77
  | `parameterOverrides` | `{}` | Override template parameter values during resolution. Keys are parameter logical IDs. |
75
78
  | `pseudoParameterOverrides` | all `undefined` | Override CloudFormation pseudo-parameters (`AWS::AccountId`, `AWS::Region`, etc.). |
76
79
  | `strict` | `false` | When `true`, `WARN`-severity diagnostics are upgraded to `ERROR`. |
77
- | `includeEngineRules` | `true` | When `false`, diagnostics with `source: "ENGINE"` are suppressed. |
80
+ | `disableBuiltinRules` | `false` | When `true`, all built-in rules (schema validation, Step Functions, engine rules) are skipped; only custom and Guard rules are evaluated. |
78
81
 
79
82
  ### RuleFilterConfig
80
83
 
@@ -86,11 +89,21 @@ interface RuleFilterConfig {
86
89
  categories?: string[]; // category names, e.g. ["security", "best_practices"]
87
90
  idRanges?: IdRange[]; // numeric ranges, e.g. { prefix: "E", start: 3000, end: 3099 }
88
91
  idPatterns?: string[]; // regex patterns matched against rule IDs
89
- resourceIds?: ResourceIdFilter[]; // suppress rule for specific logical resource ID
90
- resourceTypes?: ResourceTypeFilter[]; // suppress rule for specific resource type
92
+ resourceIds?: ResourceIdFilter[]; // a rule (or every rule) on a logical resource ID
93
+ resourceTypes?: ResourceTypeFilter[]; // a rule (or every rule) on a resource type
94
+ services?: ServiceFilter[]; // a rule (or every rule) on a service, e.g. "AWS::AutoScaling"
91
95
  }
96
+
97
+ // resourceIds / resourceTypes / services each carry an optional ruleId:
98
+ // set it to scope the filter to one rule, or omit it for every rule on the target.
99
+ interface ResourceIdFilter { ruleId?: string; resourceId: string; }
100
+ interface ResourceTypeFilter { ruleId?: string; resourceType: string; }
101
+ interface ServiceFilter { ruleId?: string; service: string; }
92
102
  ```
93
103
 
104
+ The `service` is matched verbatim against the `service-provider::service-name` prefix of the resource type — its first
105
+ two `::`-delimited segments (e.g. `AWS::AutoScaling` in `AWS::AutoScaling::LaunchConfiguration`).
106
+
94
107
  ### PseudoParameterOverrides
95
108
 
96
109
  Override CloudFormation pseudo-parameters used during intrinsic function resolution. All fields optional — when
@@ -196,23 +209,3 @@ interface StandardDiagnostic {
196
209
  conditionScenario?: Record<string, boolean>; // condition truth assignment that triggers this diagnostic
197
210
  }
198
211
  ```
199
-
200
- ### Severity levels
201
-
202
- | Level | Prefix | Meaning |
203
- |---------|--------|-----------------------------------------------------------------------|
204
- | `FATAL` | F | Structural schema violation — CloudFormation will reject the template |
205
- | `ERROR` | E | Semantic error — likely deployment failure or incorrect behavior |
206
- | `WARN` | W | Security risk, deprecation, or risky pattern |
207
- | `INFO` | I | Best practice suggestion |
208
- | `DEBUG` | D | Internal diagnostic detail |
209
-
210
- ## `version()`
211
-
212
- Returns the engine version string.
213
-
214
- ```typescript
215
- import {version} from "@aws/cloudformation-validate";
216
-
217
- console.log(version()); // e.g. "1.0.0"
218
- ```
@@ -84,7 +84,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
84
84
  ******************************
85
85
 
86
86
  anyhow
87
- 1.0.102 <https://github.com/dtolnay/anyhow>
87
+ 1.0.103 <https://github.com/dtolnay/anyhow>
88
88
  Apache License
89
89
  Version 2.0, January 2004
90
90
  http://www.apache.org/licenses/
@@ -3391,6 +3391,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3391
3391
  THE SOFTWARE.
3392
3392
 
3393
3393
 
3394
+ ******************************
3395
+
3396
+ fancy-regex
3397
+ 0.18.0 <https://github.com/fancy-regex/fancy-regex>
3398
+ The MIT License
3399
+
3400
+ Copyright 2015 The Fancy Regex Authors.
3401
+
3402
+ Permission is hereby granted, free of charge, to any person obtaining a copy
3403
+ of this software and associated documentation files (the "Software"), to deal
3404
+ in the Software without restriction, including without limitation the rights
3405
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3406
+ copies of the Software, and to permit persons to whom the Software is
3407
+ furnished to do so, subject to the following conditions:
3408
+
3409
+ The above copyright notice and this permission notice shall be included in
3410
+ all copies or substantial portions of the Software.
3411
+
3412
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3413
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3414
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3415
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3416
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3417
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3418
+ THE SOFTWARE.
3419
+
3420
+
3394
3421
  ******************************
3395
3422
 
3396
3423
  foldhash
@@ -4249,7 +4276,7 @@ limitations under the License.
4249
4276
  ******************************
4250
4277
 
4251
4278
  gloo-utils
4252
- 0.1.7 <https://github.com/rustwasm/gloo/tree/master/crates/utils>
4279
+ 0.2.0 <https://github.com/rustwasm/gloo/tree/master/crates/utils>
4253
4280
  Apache License
4254
4281
  Version 2.0, January 2004
4255
4282
  http://www.apache.org/licenses/
@@ -5852,213 +5879,6 @@ ipnetwork
5852
5879
  limitations under the License.
5853
5880
 
5854
5881
 
5855
- ******************************
5856
-
5857
- itertools
5858
- 0.4.19 <https://github.com/bluss/rust-itertools>
5859
- Apache License
5860
- Version 2.0, January 2004
5861
- http://www.apache.org/licenses/
5862
-
5863
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
5864
-
5865
- 1. Definitions.
5866
-
5867
- "License" shall mean the terms and conditions for use, reproduction,
5868
- and distribution as defined by Sections 1 through 9 of this document.
5869
-
5870
- "Licensor" shall mean the copyright owner or entity authorized by
5871
- the copyright owner that is granting the License.
5872
-
5873
- "Legal Entity" shall mean the union of the acting entity and all
5874
- other entities that control, are controlled by, or are under common
5875
- control with that entity. For the purposes of this definition,
5876
- "control" means (i) the power, direct or indirect, to cause the
5877
- direction or management of such entity, whether by contract or
5878
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
5879
- outstanding shares, or (iii) beneficial ownership of such entity.
5880
-
5881
- "You" (or "Your") shall mean an individual or Legal Entity
5882
- exercising permissions granted by this License.
5883
-
5884
- "Source" form shall mean the preferred form for making modifications,
5885
- including but not limited to software source code, documentation
5886
- source, and configuration files.
5887
-
5888
- "Object" form shall mean any form resulting from mechanical
5889
- transformation or translation of a Source form, including but
5890
- not limited to compiled object code, generated documentation,
5891
- and conversions to other media types.
5892
-
5893
- "Work" shall mean the work of authorship, whether in Source or
5894
- Object form, made available under the License, as indicated by a
5895
- copyright notice that is included in or attached to the work
5896
- (an example is provided in the Appendix below).
5897
-
5898
- "Derivative Works" shall mean any work, whether in Source or Object
5899
- form, that is based on (or derived from) the Work and for which the
5900
- editorial revisions, annotations, elaborations, or other modifications
5901
- represent, as a whole, an original work of authorship. For the purposes
5902
- of this License, Derivative Works shall not include works that remain
5903
- separable from, or merely link (or bind by name) to the interfaces of,
5904
- the Work and Derivative Works thereof.
5905
-
5906
- "Contribution" shall mean any work of authorship, including
5907
- the original version of the Work and any modifications or additions
5908
- to that Work or Derivative Works thereof, that is intentionally
5909
- submitted to Licensor for inclusion in the Work by the copyright owner
5910
- or by an individual or Legal Entity authorized to submit on behalf of
5911
- the copyright owner. For the purposes of this definition, "submitted"
5912
- means any form of electronic, verbal, or written communication sent
5913
- to the Licensor or its representatives, including but not limited to
5914
- communication on electronic mailing lists, source code control systems,
5915
- and issue tracking systems that are managed by, or on behalf of, the
5916
- Licensor for the purpose of discussing and improving the Work, but
5917
- excluding communication that is conspicuously marked or otherwise
5918
- designated in writing by the copyright owner as "Not a Contribution."
5919
-
5920
- "Contributor" shall mean Licensor and any individual or Legal Entity
5921
- on behalf of whom a Contribution has been received by Licensor and
5922
- subsequently incorporated within the Work.
5923
-
5924
- 2. Grant of Copyright License. Subject to the terms and conditions of
5925
- this License, each Contributor hereby grants to You a perpetual,
5926
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5927
- copyright license to reproduce, prepare Derivative Works of,
5928
- publicly display, publicly perform, sublicense, and distribute the
5929
- Work and such Derivative Works in Source or Object form.
5930
-
5931
- 3. Grant of Patent License. Subject to the terms and conditions of
5932
- this License, each Contributor hereby grants to You a perpetual,
5933
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
5934
- (except as stated in this section) patent license to make, have made,
5935
- use, offer to sell, sell, import, and otherwise transfer the Work,
5936
- where such license applies only to those patent claims licensable
5937
- by such Contributor that are necessarily infringed by their
5938
- Contribution(s) alone or by combination of their Contribution(s)
5939
- with the Work to which such Contribution(s) was submitted. If You
5940
- institute patent litigation against any entity (including a
5941
- cross-claim or counterclaim in a lawsuit) alleging that the Work
5942
- or a Contribution incorporated within the Work constitutes direct
5943
- or contributory patent infringement, then any patent licenses
5944
- granted to You under this License for that Work shall terminate
5945
- as of the date such litigation is filed.
5946
-
5947
- 4. Redistribution. You may reproduce and distribute copies of the
5948
- Work or Derivative Works thereof in any medium, with or without
5949
- modifications, and in Source or Object form, provided that You
5950
- meet the following conditions:
5951
-
5952
- (a) You must give any other recipients of the Work or
5953
- Derivative Works a copy of this License; and
5954
-
5955
- (b) You must cause any modified files to carry prominent notices
5956
- stating that You changed the files; and
5957
-
5958
- (c) You must retain, in the Source form of any Derivative Works
5959
- that You distribute, all copyright, patent, trademark, and
5960
- attribution notices from the Source form of the Work,
5961
- excluding those notices that do not pertain to any part of
5962
- the Derivative Works; and
5963
-
5964
- (d) If the Work includes a "NOTICE" text file as part of its
5965
- distribution, then any Derivative Works that You distribute must
5966
- include a readable copy of the attribution notices contained
5967
- within such NOTICE file, excluding those notices that do not
5968
- pertain to any part of the Derivative Works, in at least one
5969
- of the following places: within a NOTICE text file distributed
5970
- as part of the Derivative Works; within the Source form or
5971
- documentation, if provided along with the Derivative Works; or,
5972
- within a display generated by the Derivative Works, if and
5973
- wherever such third-party notices normally appear. The contents
5974
- of the NOTICE file are for informational purposes only and
5975
- do not modify the License. You may add Your own attribution
5976
- notices within Derivative Works that You distribute, alongside
5977
- or as an addendum to the NOTICE text from the Work, provided
5978
- that such additional attribution notices cannot be construed
5979
- as modifying the License.
5980
-
5981
- You may add Your own copyright statement to Your modifications and
5982
- may provide additional or different license terms and conditions
5983
- for use, reproduction, or distribution of Your modifications, or
5984
- for any such Derivative Works as a whole, provided Your use,
5985
- reproduction, and distribution of the Work otherwise complies with
5986
- the conditions stated in this License.
5987
-
5988
- 5. Submission of Contributions. Unless You explicitly state otherwise,
5989
- any Contribution intentionally submitted for inclusion in the Work
5990
- by You to the Licensor shall be under the terms and conditions of
5991
- this License, without any additional terms or conditions.
5992
- Notwithstanding the above, nothing herein shall supersede or modify
5993
- the terms of any separate license agreement you may have executed
5994
- with Licensor regarding such Contributions.
5995
-
5996
- 6. Trademarks. This License does not grant permission to use the trade
5997
- names, trademarks, service marks, or product names of the Licensor,
5998
- except as required for reasonable and customary use in describing the
5999
- origin of the Work and reproducing the content of the NOTICE file.
6000
-
6001
- 7. Disclaimer of Warranty. Unless required by applicable law or
6002
- agreed to in writing, Licensor provides the Work (and each
6003
- Contributor provides its Contributions) on an "AS IS" BASIS,
6004
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
6005
- implied, including, without limitation, any warranties or conditions
6006
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
6007
- PARTICULAR PURPOSE. You are solely responsible for determining the
6008
- appropriateness of using or redistributing the Work and assume any
6009
- risks associated with Your exercise of permissions under this License.
6010
-
6011
- 8. Limitation of Liability. In no event and under no legal theory,
6012
- whether in tort (including negligence), contract, or otherwise,
6013
- unless required by applicable law (such as deliberate and grossly
6014
- negligent acts) or agreed to in writing, shall any Contributor be
6015
- liable to You for damages, including any direct, indirect, special,
6016
- incidental, or consequential damages of any character arising as a
6017
- result of this License or out of the use or inability to use the
6018
- Work (including but not limited to damages for loss of goodwill,
6019
- work stoppage, computer failure or malfunction, or any and all
6020
- other commercial damages or losses), even if such Contributor
6021
- has been advised of the possibility of such damages.
6022
-
6023
- 9. Accepting Warranty or Additional Liability. While redistributing
6024
- the Work or Derivative Works thereof, You may choose to offer,
6025
- and charge a fee for, acceptance of support, warranty, indemnity,
6026
- or other liability obligations and/or rights consistent with this
6027
- License. However, in accepting such obligations, You may act only
6028
- on Your own behalf and on Your sole responsibility, not on behalf
6029
- of any other Contributor, and only if You agree to indemnify,
6030
- defend, and hold each Contributor harmless for any liability
6031
- incurred by, or claims asserted against, such Contributor by reason
6032
- of your accepting any such warranty or additional liability.
6033
-
6034
- END OF TERMS AND CONDITIONS
6035
-
6036
- APPENDIX: How to apply the Apache License to your work.
6037
-
6038
- To apply the Apache License to your work, attach the following
6039
- boilerplate notice, with the fields enclosed by brackets "[]"
6040
- replaced with your own identifying information. (Don't include
6041
- the brackets!) The text should be enclosed in the appropriate
6042
- comment syntax for the file format. We also recommend that a
6043
- file or class name and description of purpose be included on the
6044
- same "printed page" as the copyright notice for easier
6045
- identification within third-party archives.
6046
-
6047
- Copyright [yyyy] [name of copyright owner]
6048
-
6049
- Licensed under the Apache License, Version 2.0 (the "License");
6050
- you may not use this file except in compliance with the License.
6051
- You may obtain a copy of the License at
6052
-
6053
- http://www.apache.org/licenses/LICENSE-2.0
6054
-
6055
- Unless required by applicable law or agreed to in writing, software
6056
- distributed under the License is distributed on an "AS IS" BASIS,
6057
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
6058
- See the License for the specific language governing permissions and
6059
- limitations under the License.
6060
-
6061
-
6062
5882
  ******************************
6063
5883
 
6064
5884
  itoa
@@ -6141,7 +5961,7 @@ limitations under the License.
6141
5961
  ******************************
6142
5962
 
6143
5963
  js-sys
6144
- 0.3.102 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys>
5964
+ 0.3.103 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys>
6145
5965
  Apache License
6146
5966
  Version 2.0, January 2004
6147
5967
  http://www.apache.org/licenses/
@@ -6762,7 +6582,7 @@ limitations under the License.
6762
6582
  ******************************
6763
6583
 
6764
6584
  log
6765
- 0.4.32 <https://github.com/rust-lang/log>
6585
+ 0.4.33 <https://github.com/rust-lang/log>
6766
6586
  Apache License
6767
6587
  Version 2.0, January 2004
6768
6588
  http://www.apache.org/licenses/
@@ -7541,7 +7361,7 @@ SOFTWARE.
7541
7361
  ******************************
7542
7362
 
7543
7363
  num-bigint
7544
- 0.4.6 <https://github.com/rust-num/num-bigint>
7364
+ 0.4.7 <https://github.com/rust-num/num-bigint>
7545
7365
  Apache License
7546
7366
  Version 2.0, January 2004
7547
7367
  http://www.apache.org/licenses/
@@ -9224,39 +9044,10 @@ See the License for the specific language governing permissions and
9224
9044
  limitations under the License.
9225
9045
 
9226
9046
 
9227
- ******************************
9228
-
9229
- quick-xml
9230
- 0.30.0 <https://github.com/tafia/quick-xml>
9231
- The MIT License (MIT)
9232
-
9233
- Copyright (c) 2016 Johann Tuffe
9234
-
9235
- Permission is hereby granted, free of charge, to any person obtaining a copy
9236
- of this software and associated documentation files (the "Software"), to deal
9237
- in the Software without restriction, including without limitation the rights
9238
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9239
- copies of the Software, and to permit persons to whom the Software is
9240
- furnished to do so, subject to the following conditions:
9241
-
9242
-
9243
- The above copyright notice and this permission notice shall be included in
9244
- all copies or substantial portions of the Software.
9245
-
9246
-
9247
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9248
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9249
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9250
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9251
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9252
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
9253
- THE SOFTWARE.
9254
-
9255
-
9256
9047
  ******************************
9257
9048
 
9258
9049
  quote
9259
- 1.0.45 <https://github.com/dtolnay/quote>
9050
+ 1.0.46 <https://github.com/dtolnay/quote>
9260
9051
  Apache License
9261
9052
  Version 2.0, January 2004
9262
9053
  http://www.apache.org/licenses/
@@ -10569,7 +10360,7 @@ Some files are licensed Apache-2.0 (LICENSE-2.0.txt).
10569
10360
  ******************************
10570
10361
 
10571
10362
  ruzstd
10572
- 0.7.3 <https://github.com/KillingSpark/zstd-rs>
10363
+ 0.8.3 <https://github.com/KillingSpark/zstd-rs>
10573
10364
  MIT License
10574
10365
 
10575
10366
  Copyright (c) 2019 Moritz Borcherding
@@ -11037,33 +10828,6 @@ See the License for the specific language governing permissions and
11037
10828
  limitations under the License.
11038
10829
 
11039
10830
 
11040
- ******************************
11041
-
11042
- serde-wasm-bindgen
11043
- 0.5.0 <https://github.com/cloudflare/serde-wasm-bindgen>
11044
- MIT License
11045
-
11046
- Copyright (c) 2019 Cloudflare, Inc.
11047
-
11048
- Permission is hereby granted, free of charge, to any person obtaining a copy
11049
- of this software and associated documentation files (the "Software"), to deal
11050
- in the Software without restriction, including without limitation the rights
11051
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11052
- copies of the Software, and to permit persons to whom the Software is
11053
- furnished to do so, subject to the following conditions:
11054
-
11055
- The above copyright notice and this permission notice shall be included in all
11056
- copies or substantial portions of the Software.
11057
-
11058
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11059
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11060
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
11061
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
11062
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
11063
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
11064
- SOFTWARE.
11065
-
11066
-
11067
10831
  ******************************
11068
10832
 
11069
10833
  serde-wasm-bindgen
@@ -11252,7 +11016,7 @@ limitations under the License.
11252
11016
  ******************************
11253
11017
 
11254
11018
  serde_derive_internals
11255
- 0.28.0 <https://github.com/serde-rs/serde>
11019
+ 0.29.1 <https://github.com/serde-rs/serde>
11256
11020
  Apache License
11257
11021
  Version 2.0, January 2004
11258
11022
  http://www.apache.org/licenses/
@@ -12148,7 +11912,7 @@ limitations under the License.
12148
11912
  ******************************
12149
11913
 
12150
11914
  tsify
12151
- 0.4.5 <https://github.com/madonoharu/tsify>
11915
+ 0.5.6 <https://github.com/madonoharu/tsify>
12152
11916
  Apache License
12153
11917
  Version 2.0, January 2004
12154
11918
  http://www.apache.org/licenses/
@@ -12227,7 +11991,7 @@ limitations under the License.
12227
11991
  ******************************
12228
11992
 
12229
11993
  tsify-macros
12230
- 0.4.5 <https://github.com/madonoharu/tsify>
11994
+ 0.5.6 <https://github.com/madonoharu/tsify>
12231
11995
  Apache License
12232
11996
  Version 2.0, January 2004
12233
11997
  http://www.apache.org/licenses/
@@ -12512,7 +12276,7 @@ THE SOFTWARE.
12512
12276
  ******************************
12513
12277
 
12514
12278
  uuid
12515
- 1.23.3 <https://github.com/uuid-rs/uuid>
12279
+ 1.23.4 <https://github.com/uuid-rs/uuid>
12516
12280
  Apache License
12517
12281
  Version 2.0, January 2004
12518
12282
  http://www.apache.org/licenses/
@@ -12719,7 +12483,7 @@ limitations under the License.
12719
12483
  ******************************
12720
12484
 
12721
12485
  wasm-bindgen
12722
- 0.2.125 <https://github.com/wasm-bindgen/wasm-bindgen>
12486
+ 0.2.126 <https://github.com/wasm-bindgen/wasm-bindgen>
12723
12487
  Apache License
12724
12488
  Version 2.0, January 2004
12725
12489
  http://www.apache.org/licenses/
@@ -12926,7 +12690,7 @@ limitations under the License.
12926
12690
  ******************************
12927
12691
 
12928
12692
  wasm-bindgen-macro
12929
- 0.2.125 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro>
12693
+ 0.2.126 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro>
12930
12694
  Apache License
12931
12695
  Version 2.0, January 2004
12932
12696
  http://www.apache.org/licenses/
@@ -13133,7 +12897,7 @@ limitations under the License.
13133
12897
  ******************************
13134
12898
 
13135
12899
  wasm-bindgen-macro-support
13136
- 0.2.125 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support>
12900
+ 0.2.126 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support>
13137
12901
  Apache License
13138
12902
  Version 2.0, January 2004
13139
12903
  http://www.apache.org/licenses/
@@ -13340,7 +13104,7 @@ limitations under the License.
13340
13104
  ******************************
13341
13105
 
13342
13106
  wasm-bindgen-shared
13343
- 0.2.125 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared>
13107
+ 0.2.126 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared>
13344
13108
  Apache License
13345
13109
  Version 2.0, January 2004
13346
13110
  http://www.apache.org/licenses/
@@ -13547,7 +13311,7 @@ limitations under the License.
13547
13311
  ******************************
13548
13312
 
13549
13313
  web-sys
13550
- 0.3.102 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys>
13314
+ 0.3.103 <https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys>
13551
13315
  Apache License
13552
13316
  Version 2.0, January 2004
13553
13317
  http://www.apache.org/licenses/