├── .cargo └── config ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── createinterface.rs ├── intresult.rs └── stringarg.rs ├── runner.sh └── src ├── lib.rs ├── oven ├── architecture.rs └── mod.rs ├── params.rs ├── result.rs └── stack.rs /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | *.swp 4 | .vscode 5 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/README.md -------------------------------------------------------------------------------- /examples/createinterface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/examples/createinterface.rs -------------------------------------------------------------------------------- /examples/intresult.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/examples/intresult.rs -------------------------------------------------------------------------------- /examples/stringarg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/examples/stringarg.rs -------------------------------------------------------------------------------- /runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/runner.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/oven/architecture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/oven/architecture.rs -------------------------------------------------------------------------------- /src/oven/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/oven/mod.rs -------------------------------------------------------------------------------- /src/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/params.rs -------------------------------------------------------------------------------- /src/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/result.rs -------------------------------------------------------------------------------- /src/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memflow/reflow/HEAD/src/stack.rs --------------------------------------------------------------------------------