├── .github └── workflows │ ├── release.yaml │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── Makefile ├── README.md ├── docs ├── README.md ├── architecture.md ├── configuring_and_running.md ├── environment_variables.md ├── installation.md ├── release-process.md └── writing_modules.md ├── examples ├── README.md ├── cache.toml ├── error.wat ├── hello.wasm ├── hello.wat ├── http-example.wasm ├── invoice.toml ├── log.wasm ├── mkbindle.rs ├── modules.toml └── sources │ └── http-example │ ├── .cargo │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ └── main.rs ├── src ├── bindle_util.rs ├── dispatcher.rs ├── dynamic_route.rs ├── handler_loader │ ├── compiler.rs │ ├── emplacer.rs │ ├── loader.rs │ ├── mod.rs │ └── module_loader.rs ├── handlers.rs ├── http_util.rs ├── lib.rs ├── main.rs ├── request.rs ├── tls.rs ├── upstream │ └── mod.rs ├── version.rs ├── wagi_app.rs ├── wagi_config.rs ├── wagi_server.rs ├── wasm_module.rs └── wasm_runner.rs └── testdata ├── README.md ├── module-maps ├── crlf.wat ├── dynamic-routes.wasm ├── multiple-entrypoints.wasm ├── test1.toml ├── test2.toml ├── test3.toml ├── test_dynamic_routes.toml ├── test_healthz_override.toml ├── toast-on-demand.wasm └── wat.toml ├── sources ├── dynamic-routes │ ├── .cargo │ │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── HIPPOFACTS │ └── src │ │ └── main.rs ├── http-test │ ├── .cargo │ │ └── config.toml │ ├── .gitignore │ ├── Cargo.toml │ ├── HIPPOFACTS │ ├── modules.toml │ └── src │ │ └── main.rs ├── multiple-entrypoints │ ├── .cargo │ │ └── config.toml │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── main.rs └── print-env │ ├── .cargo │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── HIPPOFACTS │ └── src │ └── main.rs └── standalone-bindles ├── 28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54 ├── invoice.toml └── parcels │ ├── 41357daa4b91a9ab6f5c855fc606962d66fd6542e920d11e7ace9eaefc1745a9.dat │ ├── 9ab62770d7e69fa16243e6b0d199fcfd1c733f1d710297b505c98938a36a9be4.dat │ ├── 9e6ab7aecbf6ee392f5e62cd4e5a4aee2474c50095953aac7d53eb37fc353fac.dat │ └── d7cc2648c55b8b1896472b1f87da9d80c26c8e9bd71602ba981123639140bf77.dat ├── 3291b1beb4e6d0a0bee76b7c93b553bbf9649faec610029e87e125c3b68600f0 ├── invoice.toml └── parcels │ └── 73496d7c3d8be18a5f276785c3f0d36b809c180e2f5c7febbdd8b8f034ff3a4a.dat ├── 3cb6fb9875a528c0b030b6366a76991250a8571ab7beffe5b9f37b342aea372e ├── invoice.toml └── parcels │ └── 6eeea5e303121ead2f31dcaa3182b5fd5d194d62a6bf1d58e26b98d318c67af0.dat ├── 50920c514f5fa8233f57af27c17cef08f01b78500adff252c75df51c5cd9a708 ├── invoice.toml └── parcels │ └── a1a1af2309945307c713e8fb80cc7287fca4c89f02c2917ae92cd15c5a3865bf.dat └── 8b90d4296616f9f12690d70b0b90041947fac2b7a1dd6324232f8b7b0c5d5395 ├── invoice.toml └── parcels └── 06206983f7ffea2e246e95dff03e0d3bbf90c8c47a442f5f29261916e982c029.dat /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/configuring_and_running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/configuring_and_running.md -------------------------------------------------------------------------------- /docs/environment_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/environment_variables.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/release-process.md -------------------------------------------------------------------------------- /docs/writing_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/docs/writing_modules.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cache.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/cache.toml -------------------------------------------------------------------------------- /examples/error.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/error.wat -------------------------------------------------------------------------------- /examples/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/hello.wasm -------------------------------------------------------------------------------- /examples/hello.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/hello.wat -------------------------------------------------------------------------------- /examples/http-example.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/http-example.wasm -------------------------------------------------------------------------------- /examples/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/invoice.toml -------------------------------------------------------------------------------- /examples/log.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/log.wasm -------------------------------------------------------------------------------- /examples/mkbindle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/mkbindle.rs -------------------------------------------------------------------------------- /examples/modules.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/modules.toml -------------------------------------------------------------------------------- /examples/sources/http-example/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/sources/http-example/.cargo/config.toml -------------------------------------------------------------------------------- /examples/sources/http-example/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/sources/http-example/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/sources/http-example/Cargo.lock -------------------------------------------------------------------------------- /examples/sources/http-example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/sources/http-example/Cargo.toml -------------------------------------------------------------------------------- /examples/sources/http-example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/examples/sources/http-example/src/main.rs -------------------------------------------------------------------------------- /src/bindle_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/bindle_util.rs -------------------------------------------------------------------------------- /src/dispatcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/dispatcher.rs -------------------------------------------------------------------------------- /src/dynamic_route.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/dynamic_route.rs -------------------------------------------------------------------------------- /src/handler_loader/compiler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handler_loader/compiler.rs -------------------------------------------------------------------------------- /src/handler_loader/emplacer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handler_loader/emplacer.rs -------------------------------------------------------------------------------- /src/handler_loader/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handler_loader/loader.rs -------------------------------------------------------------------------------- /src/handler_loader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handler_loader/mod.rs -------------------------------------------------------------------------------- /src/handler_loader/module_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handler_loader/module_loader.rs -------------------------------------------------------------------------------- /src/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/handlers.rs -------------------------------------------------------------------------------- /src/http_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/http_util.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/request.rs -------------------------------------------------------------------------------- /src/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/tls.rs -------------------------------------------------------------------------------- /src/upstream/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/upstream/mod.rs -------------------------------------------------------------------------------- /src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/version.rs -------------------------------------------------------------------------------- /src/wagi_app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/wagi_app.rs -------------------------------------------------------------------------------- /src/wagi_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/wagi_config.rs -------------------------------------------------------------------------------- /src/wagi_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/wagi_server.rs -------------------------------------------------------------------------------- /src/wasm_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/wasm_module.rs -------------------------------------------------------------------------------- /src/wasm_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/src/wasm_runner.rs -------------------------------------------------------------------------------- /testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/README.md -------------------------------------------------------------------------------- /testdata/module-maps/crlf.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/crlf.wat -------------------------------------------------------------------------------- /testdata/module-maps/dynamic-routes.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/dynamic-routes.wasm -------------------------------------------------------------------------------- /testdata/module-maps/multiple-entrypoints.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/multiple-entrypoints.wasm -------------------------------------------------------------------------------- /testdata/module-maps/test1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/test1.toml -------------------------------------------------------------------------------- /testdata/module-maps/test2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/test2.toml -------------------------------------------------------------------------------- /testdata/module-maps/test3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/test3.toml -------------------------------------------------------------------------------- /testdata/module-maps/test_dynamic_routes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/test_dynamic_routes.toml -------------------------------------------------------------------------------- /testdata/module-maps/test_healthz_override.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/test_healthz_override.toml -------------------------------------------------------------------------------- /testdata/module-maps/toast-on-demand.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/toast-on-demand.wasm -------------------------------------------------------------------------------- /testdata/module-maps/wat.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/module-maps/wat.toml -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/.cargo/config.toml -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/.gitignore -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/Cargo.lock -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/Cargo.toml -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/HIPPOFACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/HIPPOFACTS -------------------------------------------------------------------------------- /testdata/sources/dynamic-routes/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/dynamic-routes/src/main.rs -------------------------------------------------------------------------------- /testdata/sources/http-test/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/.cargo/config.toml -------------------------------------------------------------------------------- /testdata/sources/http-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/.gitignore -------------------------------------------------------------------------------- /testdata/sources/http-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/Cargo.toml -------------------------------------------------------------------------------- /testdata/sources/http-test/HIPPOFACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/HIPPOFACTS -------------------------------------------------------------------------------- /testdata/sources/http-test/modules.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/modules.toml -------------------------------------------------------------------------------- /testdata/sources/http-test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/http-test/src/main.rs -------------------------------------------------------------------------------- /testdata/sources/multiple-entrypoints/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/multiple-entrypoints/.cargo/config.toml -------------------------------------------------------------------------------- /testdata/sources/multiple-entrypoints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/multiple-entrypoints/.gitignore -------------------------------------------------------------------------------- /testdata/sources/multiple-entrypoints/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/multiple-entrypoints/Cargo.toml -------------------------------------------------------------------------------- /testdata/sources/multiple-entrypoints/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/multiple-entrypoints/src/main.rs -------------------------------------------------------------------------------- /testdata/sources/print-env/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/.cargo/config.toml -------------------------------------------------------------------------------- /testdata/sources/print-env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/.gitignore -------------------------------------------------------------------------------- /testdata/sources/print-env/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/Cargo.lock -------------------------------------------------------------------------------- /testdata/sources/print-env/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/Cargo.toml -------------------------------------------------------------------------------- /testdata/sources/print-env/HIPPOFACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/HIPPOFACTS -------------------------------------------------------------------------------- /testdata/sources/print-env/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/sources/print-env/src/main.rs -------------------------------------------------------------------------------- /testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/invoice.toml -------------------------------------------------------------------------------- /testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/41357daa4b91a9ab6f5c855fc606962d66fd6542e920d11e7ace9eaefc1745a9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/41357daa4b91a9ab6f5c855fc606962d66fd6542e920d11e7ace9eaefc1745a9.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/9ab62770d7e69fa16243e6b0d199fcfd1c733f1d710297b505c98938a36a9be4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/9ab62770d7e69fa16243e6b0d199fcfd1c733f1d710297b505c98938a36a9be4.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/9e6ab7aecbf6ee392f5e62cd4e5a4aee2474c50095953aac7d53eb37fc353fac.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/9e6ab7aecbf6ee392f5e62cd4e5a4aee2474c50095953aac7d53eb37fc353fac.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/d7cc2648c55b8b1896472b1f87da9d80c26c8e9bd71602ba981123639140bf77.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/28e62d239a12d50b11db734eb4a37bf9e746fd487f2a375d17db3a82d6869d54/parcels/d7cc2648c55b8b1896472b1f87da9d80c26c8e9bd71602ba981123639140bf77.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/3291b1beb4e6d0a0bee76b7c93b553bbf9649faec610029e87e125c3b68600f0/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/3291b1beb4e6d0a0bee76b7c93b553bbf9649faec610029e87e125c3b68600f0/invoice.toml -------------------------------------------------------------------------------- /testdata/standalone-bindles/3291b1beb4e6d0a0bee76b7c93b553bbf9649faec610029e87e125c3b68600f0/parcels/73496d7c3d8be18a5f276785c3f0d36b809c180e2f5c7febbdd8b8f034ff3a4a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/3291b1beb4e6d0a0bee76b7c93b553bbf9649faec610029e87e125c3b68600f0/parcels/73496d7c3d8be18a5f276785c3f0d36b809c180e2f5c7febbdd8b8f034ff3a4a.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/3cb6fb9875a528c0b030b6366a76991250a8571ab7beffe5b9f37b342aea372e/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/3cb6fb9875a528c0b030b6366a76991250a8571ab7beffe5b9f37b342aea372e/invoice.toml -------------------------------------------------------------------------------- /testdata/standalone-bindles/3cb6fb9875a528c0b030b6366a76991250a8571ab7beffe5b9f37b342aea372e/parcels/6eeea5e303121ead2f31dcaa3182b5fd5d194d62a6bf1d58e26b98d318c67af0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/3cb6fb9875a528c0b030b6366a76991250a8571ab7beffe5b9f37b342aea372e/parcels/6eeea5e303121ead2f31dcaa3182b5fd5d194d62a6bf1d58e26b98d318c67af0.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/50920c514f5fa8233f57af27c17cef08f01b78500adff252c75df51c5cd9a708/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/50920c514f5fa8233f57af27c17cef08f01b78500adff252c75df51c5cd9a708/invoice.toml -------------------------------------------------------------------------------- /testdata/standalone-bindles/50920c514f5fa8233f57af27c17cef08f01b78500adff252c75df51c5cd9a708/parcels/a1a1af2309945307c713e8fb80cc7287fca4c89f02c2917ae92cd15c5a3865bf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/50920c514f5fa8233f57af27c17cef08f01b78500adff252c75df51c5cd9a708/parcels/a1a1af2309945307c713e8fb80cc7287fca4c89f02c2917ae92cd15c5a3865bf.dat -------------------------------------------------------------------------------- /testdata/standalone-bindles/8b90d4296616f9f12690d70b0b90041947fac2b7a1dd6324232f8b7b0c5d5395/invoice.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/8b90d4296616f9f12690d70b0b90041947fac2b7a1dd6324232f8b7b0c5d5395/invoice.toml -------------------------------------------------------------------------------- /testdata/standalone-bindles/8b90d4296616f9f12690d70b0b90041947fac2b7a1dd6324232f8b7b0c5d5395/parcels/06206983f7ffea2e246e95dff03e0d3bbf90c8c47a442f5f29261916e982c029.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deislabs/wagi/HEAD/testdata/standalone-bindles/8b90d4296616f9f12690d70b0b90041947fac2b7a1dd6324232f8b7b0c5d5395/parcels/06206983f7ffea2e246e95dff03e0d3bbf90c8c47a442f5f29261916e982c029.dat --------------------------------------------------------------------------------