@ioka-technologies/asyncapi-rust-client-template 0.0.22 → 0.0.23

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.
@@ -1,49 +0,0 @@
1
- {
2
- "name": "@asyncapi/rust-client-template",
3
- "version": "0.0.0",
4
- "description": "AsyncAPI template for generating Rust NATS clients",
5
- "main": "index.js",
6
- "type": "module",
7
- "keywords": [
8
- "asyncapi",
9
- "template",
10
- "rust",
11
- "nats",
12
- "client",
13
- "generator"
14
- ],
15
- "author": "AsyncAPI Generator",
16
- "license": "Apache-2.0",
17
- "dependencies": {
18
- "@asyncapi/generator-react-sdk": "^1.0.20"
19
- },
20
- "generator": {
21
- "renderer": "react",
22
- "apiVersion": "v3",
23
- "supportedProtocols": [
24
- "nats"
25
- ],
26
- "parameters": {
27
- "clientName": {
28
- "description": "Name of the generated client struct",
29
- "default": "{{asyncapi.info().title() | replace(/[^a-zA-Z0-9]/g, '') }}Client"
30
- },
31
- "packageName": {
32
- "description": "Name of the generated Rust crate",
33
- "default": "{{asyncapi.info().title() | kebabCase}}-client"
34
- },
35
- "packageVersion": {
36
- "description": "Version of the generated crate",
37
- "default": "{{asyncapi.info().version()}}"
38
- },
39
- "author": {
40
- "description": "Author of the generated crate",
41
- "default": "AsyncAPI Generator"
42
- },
43
- "license": {
44
- "description": "License of the generated crate",
45
- "default": "Apache-2.0"
46
- }
47
- }
48
- }
49
- }