@caatinga/core 3.3.1 → 3.4.0

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.
@@ -31,7 +31,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
31
31
  var requirements_exports = {};
32
32
  __export(requirements_exports, {
33
33
  CURRENT_RUST_WASM_TARGET: () => CURRENT_RUST_WASM_TARGET,
34
- NODE_MIN_MAJOR: () => NODE_MIN_MAJOR
34
+ NODE_MIN_MAJOR: () => NODE_MIN_MAJOR,
35
+ RUST_MIN_VERSION: () => RUST_MIN_VERSION
35
36
  });
36
37
  module.exports = __toCommonJS(requirements_exports);
37
38
 
@@ -109,9 +110,11 @@ var ZK_ERROR_CODE_MAP = {
109
110
  var CURRENT_RUST_WASM_TARGET = "wasm32v1-none";
110
111
 
111
112
  // src/runtime/requirements.ts
112
- var NODE_MIN_MAJOR = 20;
113
+ var NODE_MIN_MAJOR = 22;
114
+ var RUST_MIN_VERSION = "1.84.0";
113
115
  // Annotate the CommonJS export names for ESM import in node:
114
116
  0 && (module.exports = {
115
117
  CURRENT_RUST_WASM_TARGET,
116
- NODE_MIN_MAJOR
118
+ NODE_MIN_MAJOR,
119
+ RUST_MIN_VERSION
117
120
  });
@@ -1,5 +1,6 @@
1
1
  declare const CURRENT_RUST_WASM_TARGET = "wasm32v1-none";
2
2
 
3
- declare const NODE_MIN_MAJOR = 20;
3
+ declare const NODE_MIN_MAJOR = 22;
4
+ declare const RUST_MIN_VERSION = "1.84.0";
4
5
 
5
- export { CURRENT_RUST_WASM_TARGET, NODE_MIN_MAJOR };
6
+ export { CURRENT_RUST_WASM_TARGET, NODE_MIN_MAJOR, RUST_MIN_VERSION };
@@ -1,5 +1,6 @@
1
1
  declare const CURRENT_RUST_WASM_TARGET = "wasm32v1-none";
2
2
 
3
- declare const NODE_MIN_MAJOR = 20;
3
+ declare const NODE_MIN_MAJOR = 22;
4
+ declare const RUST_MIN_VERSION = "1.84.0";
4
5
 
5
- export { CURRENT_RUST_WASM_TARGET, NODE_MIN_MAJOR };
6
+ export { CURRENT_RUST_WASM_TARGET, NODE_MIN_MAJOR, RUST_MIN_VERSION };
@@ -72,8 +72,10 @@ var ZK_ERROR_CODE_MAP = {
72
72
  var CURRENT_RUST_WASM_TARGET = "wasm32v1-none";
73
73
 
74
74
  // src/runtime/requirements.ts
75
- var NODE_MIN_MAJOR = 20;
75
+ var NODE_MIN_MAJOR = 22;
76
+ var RUST_MIN_VERSION = "1.84.0";
76
77
  export {
77
78
  CURRENT_RUST_WASM_TARGET,
78
- NODE_MIN_MAJOR
79
+ NODE_MIN_MAJOR,
80
+ RUST_MIN_VERSION
79
81
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caatinga/core",
3
- "version": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "Core config, artifacts, command orchestration, and error primitives for Caatinga/Soroban toolkit",
5
5
  "keywords": [
6
6
  "stellar",
@@ -16,7 +16,7 @@
16
16
  "url": "git+https://github.com/Dione-b/caatinga.git",
17
17
  "directory": "packages/core"
18
18
  },
19
- "homepage": "https://github.com/Dione-b/caatinga#readme",
19
+ "homepage": "https://dione-b.github.io/caatinga/",
20
20
  "author": "Caatinga contributors",
21
21
  "license": "MIT",
22
22
  "engines": {