├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── include └── witness.h ├── script └── replace.sh └── src ├── field.rs ├── generate.rs ├── graph.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/README.md -------------------------------------------------------------------------------- /include/witness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/include/witness.h -------------------------------------------------------------------------------- /script/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/script/replace.sh -------------------------------------------------------------------------------- /src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/src/field.rs -------------------------------------------------------------------------------- /src/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/src/generate.rs -------------------------------------------------------------------------------- /src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/src/graph.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsippl/circom-witness-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------