@aztec/noir-noir_codegen 0.78.1 → 0.79.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.
package/lib/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { CompiledCircuit } from '@noir-lang/types';
1
+ import { CompiledCircuit } from '@aztec/noir-types';
2
2
  export declare const codegen: (programs: [string, CompiledCircuit][], embedArtifact: boolean, useFixedLengthArrays: boolean) => string;
@@ -1,4 +1,4 @@
1
- import { AbiType } from '@noir-lang/noirc_abi';
1
+ import { AbiType } from '@aztec/noir-noirc_abi';
2
2
  /**
3
3
  * Represents a binding to a generic.
4
4
  */
@@ -1,5 +1,5 @@
1
- import { CompiledCircuit } from '@noir-lang/types';
2
- import { Abi } from '@noir-lang/noirc_abi';
1
+ import { CompiledCircuit } from '@aztec/noir-types';
2
+ import { Abi } from '@aztec/noir-noirc_abi';
3
3
  export declare class TypingsGenerator {
4
4
  private useFixedLengthArrays;
5
5
  /** All the types in the ABIs */
@@ -4,9 +4,9 @@ const codegenPrelude = `/* Autogenerated file, do not edit! */
4
4
 
5
5
  /* eslint-disable */
6
6
 
7
- import { Noir, InputMap, type CompiledCircuit, type ForeignCallHandler } from "@noir-lang/noir_js"
7
+ import { Noir, InputMap, type CompiledCircuit, type ForeignCallHandler } from "@aztec/noir-noir_js"
8
8
 
9
- export { type ForeignCallHandler } from "@noir-lang/noir_js"
9
+ export { type ForeignCallHandler } from "@aztec/noir-noir_js"
10
10
  `;
11
11
  /**
12
12
  * Returns the last component of a path, e.g. "foo::bar::baz" -\> "baz"
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "contributors": [
4
4
  "The Noir Team <team@noir-lang.org>"
5
5
  ],
6
- "version": "0.78.1",
6
+ "version": "0.79.0",
7
7
  "packageManager": "yarn@3.5.1",
8
8
  "license": "(MIT OR Apache-2.0)",
9
9
  "type": "module",
@@ -17,9 +17,9 @@
17
17
  "url": "https://github.com/noir-lang/noir/issues"
18
18
  },
19
19
  "dependencies": {
20
+ "@aztec/noir-types": "0.79.0",
20
21
  "glob": "^10.3.10",
21
- "ts-command-line-args": "^2.5.1",
22
- "@aztec/noir-types": "0.78.1"
22
+ "ts-command-line-args": "^2.5.1"
23
23
  },
24
24
  "files": [
25
25
  "lib",
@@ -46,6 +46,7 @@
46
46
  "clean": "rm -rf ./lib"
47
47
  },
48
48
  "devDependencies": {
49
+ "@aztec/noir-noir_js": "0.79.0",
49
50
  "@types/chai": "^4",
50
51
  "@types/mocha": "^10.0.1",
51
52
  "@types/node": "^20.6.2",
@@ -57,7 +58,6 @@
57
58
  "prettier": "3.2.5",
58
59
  "ts-node": "^10.9.1",
59
60
  "tsx": "^4.6.2",
60
- "typescript": "^5.4.2",
61
- "@aztec/noir-noir_js": "0.78.1"
61
+ "typescript": "^5.4.2"
62
62
  }
63
63
  }