vovk-rust 0.0.1-draft.60 → 0.0.1-draft.61

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-rust",
3
- "version": "0.0.1-draft.60",
3
+ "version": "0.0.1-draft.61",
4
4
  "description": "Vovk.ts Rust client",
5
5
  "scripts": {
6
6
  "build": "tsc",
package/requirements.txt DELETED
@@ -1,4 +0,0 @@
1
- requests
2
- jsonschema
3
- types-requests
4
- types-jsonschema
@@ -1,27 +0,0 @@
1
- // @ts-check
2
- /** @type {import('vovk').VovkConfig} */
3
- const vovkConfig = {
4
- logLevel: 'debug',
5
- generatorConfig: { origin: `http://localhost:${process.env.PORT}` },
6
- clientTemplateDefs: {
7
- rs: {
8
- extends: 'rs',
9
- composedClient: {
10
- outDir: '../packages/vovk-rust/generated_rust_client',
11
- },
12
- generatorConfig: {
13
- package: {
14
- name: 'generated_rust_client',
15
- version: '0.1.0',
16
- license: 'MIT',
17
- description: 'Vovk Rust Client',
18
- },
19
- },
20
- },
21
- },
22
- composedClient: {
23
- fromTemplates: ['rs'],
24
- },
25
- };
26
-
27
- export default vovkConfig;