├── .cargo └── config ├── .circleci └── config.yml ├── .clippy.toml ├── .config └── nextest.toml ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── improvement.md └── workflows │ ├── clippy-check.yaml │ ├── commitlint.yaml │ ├── docs-check.yaml │ ├── docs.yaml │ ├── formatting.yaml │ ├── licenses.yaml │ ├── mono_workflow.yaml │ └── release.ts ├── .gitignore ├── .gitmodules ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Justfile ├── LICENSE ├── README.md ├── crates ├── components │ ├── wick-http-client │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── component.rs │ │ │ ├── conversions.rs │ │ │ ├── error.rs │ │ │ └── lib.rs │ └── wick-sql │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ ├── common.rs │ │ ├── common │ │ └── sql_wrapper.rs │ │ ├── component.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── mssql_tiberius │ │ ├── component.rs │ │ ├── mod.rs │ │ ├── mssql.rs │ │ └── sql_wrapper.rs │ │ └── sqlx │ │ ├── component.rs │ │ ├── mod.rs │ │ ├── postgres.rs │ │ ├── postgres │ │ └── serialize.rs │ │ ├── sqlite.rs │ │ └── sqlite │ │ └── serialize.rs ├── integration │ ├── test-baseline-component │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.yaml │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ ├── test-cli-trigger-component │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.yaml │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ ├── test-cli-with-db │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.yaml │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ └── test-http-trigger-component │ │ ├── .gitignore │ │ ├── .vscode │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.yaml │ │ ├── justfile │ │ └── src │ │ ├── generated │ │ └── mod.rs │ │ └── lib.rs ├── interfaces │ ├── wick-interface-cli │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── build.rs │ │ ├── component.yaml │ │ └── src │ │ │ └── lib.rs │ └── wick-interface-http │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── build.rs │ │ ├── component.yaml │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ └── serde.rs ├── misc │ ├── asset-container │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ │ ├── assets.rs │ │ │ ├── assets │ │ │ │ └── flags.rs │ │ │ ├── error.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ └── assets.rs │ ├── derive-asset-container │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ └── derive.rs │ ├── performance-mark │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── performance.rs │ │ │ └── serde.rs │ ├── seeded-random │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── rng.rs │ │ │ └── seed.rs │ ├── tap-harness │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ └── basic.rs │ └── test-logger │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ └── src │ │ └── lib.rs └── wick │ ├── flow-component │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── context.rs │ │ ├── lib.rs │ │ └── traits.rs │ ├── flow-expression-parser │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── ast.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── parse.rs │ │ └── parse │ │ ├── v0.rs │ │ ├── v1.rs │ │ └── v1 │ │ └── parsers.rs │ ├── flow-graph-interpreter │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── error.rs │ │ ├── graph.rs │ │ ├── graph │ │ │ ├── error.rs │ │ │ ├── helpers.rs │ │ │ ├── operation_settings.rs │ │ │ └── types.rs │ │ ├── interpreter.rs │ │ ├── interpreter │ │ │ ├── channel.rs │ │ │ ├── components.rs │ │ │ ├── components │ │ │ │ ├── component.rs │ │ │ │ ├── core.rs │ │ │ │ ├── core │ │ │ │ │ ├── collect.rs │ │ │ │ │ ├── log.rs │ │ │ │ │ ├── merge.rs │ │ │ │ │ ├── pluck.rs │ │ │ │ │ ├── sender.rs │ │ │ │ │ └── switch.rs │ │ │ │ ├── internal.rs │ │ │ │ ├── internal │ │ │ │ │ └── oneshot.rs │ │ │ │ ├── null.rs │ │ │ │ └── self_component.rs │ │ │ ├── error.rs │ │ │ ├── event_loop.rs │ │ │ ├── event_loop │ │ │ │ └── state.rs │ │ │ ├── executor.rs │ │ │ ├── executor │ │ │ │ ├── context.rs │ │ │ │ ├── context │ │ │ │ │ ├── operation.rs │ │ │ │ │ ├── operation │ │ │ │ │ │ ├── port.rs │ │ │ │ │ │ └── port │ │ │ │ │ │ │ ├── port_buffer.rs │ │ │ │ │ │ │ └── port_handler.rs │ │ │ │ │ └── statistics.rs │ │ │ │ └── error.rs │ │ │ ├── program.rs │ │ │ └── program │ │ │ │ ├── validator.rs │ │ │ │ └── validator │ │ │ │ └── error.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ └── utils.rs │ └── tests │ │ ├── bad-cases.rs │ │ ├── behavior.rs │ │ ├── components.rs │ │ ├── core.rs │ │ ├── manifests │ │ ├── v0 │ │ │ ├── bad-cases │ │ │ │ ├── comp-error.yaml │ │ │ │ ├── error.yaml │ │ │ │ ├── irresponsible-component.yaml │ │ │ │ ├── noimpl.yaml │ │ │ │ ├── panic.yaml │ │ │ │ ├── timeout-done-noclose.yaml │ │ │ │ └── timeout-missingdone.yaml │ │ │ ├── core │ │ │ │ └── senders.yaml │ │ │ ├── echo.yaml │ │ │ ├── exception-default.yaml │ │ │ ├── exception-nodefault.yaml │ │ │ ├── external.yaml │ │ │ ├── inherent-disconnected.yaml │ │ │ ├── inherent-nested.yaml │ │ │ ├── inherent.yaml │ │ │ ├── multiple-inputs.yaml │ │ │ ├── no-inputs.yaml │ │ │ ├── parent-child-simple.yaml │ │ │ ├── parent-child.yaml │ │ │ ├── reference-self.yaml │ │ │ ├── reverse.yaml │ │ │ ├── spread.yaml │ │ │ ├── stream-collection-ref.yaml │ │ │ ├── stream-multi.yaml │ │ │ └── stream.yaml │ │ └── v1 │ │ │ ├── behavior-forked-input.yaml │ │ │ ├── behavior-unused-instances.yaml │ │ │ ├── children-operations.yaml │ │ │ ├── component-call.yaml │ │ │ ├── component-context-vars.yaml │ │ │ ├── component-notimeout-downstream.yaml │ │ │ ├── component-timeout.yaml │ │ │ ├── core-drop.yaml │ │ │ ├── core-merge.yaml │ │ │ ├── core-multi-sender.yaml │ │ │ ├── core-pluck-shorthand.yaml │ │ │ ├── core-pluck-streams.yaml │ │ │ ├── core-pluck.yaml │ │ │ ├── core-sender-merge.yaml │ │ │ ├── core-switch-2.yaml │ │ │ ├── core-switch-multi-input-streams.yaml │ │ │ ├── core-switch-streams-default-only.yaml │ │ │ ├── core-switch-streams.yaml │ │ │ ├── core-switch.yaml │ │ │ ├── flow-sequences.yaml │ │ │ └── inline-node-ids.yaml │ │ ├── test │ │ ├── mod.rs │ │ ├── observer.rs │ │ └── test_component.rs │ │ └── validation.rs │ ├── flow-graph │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── connection.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── network.rs │ │ ├── node.rs │ │ ├── port.rs │ │ ├── schematic.rs │ │ └── schematic │ │ ├── dot.rs │ │ ├── iterators.rs │ │ └── iterators │ │ ├── connection.rs │ │ ├── node.rs │ │ └── port.rs │ ├── wick-asset-reference │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── asset_reference.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── utils.rs │ ├── wick-component-cli │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── cli.rs │ │ ├── cli │ │ └── grpc.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── options.rs │ │ └── utils.rs │ ├── wick-component-codegen │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── generate.rs │ │ ├── generate │ │ │ ├── config.rs │ │ │ ├── dependency.rs │ │ │ ├── expand_type.rs │ │ │ ├── f.rs │ │ │ ├── ids.rs │ │ │ ├── module.rs │ │ │ ├── templates.rs │ │ │ └── templates │ │ │ │ ├── component_config.rs │ │ │ │ ├── component_impl.rs │ │ │ │ ├── imported_components.rs │ │ │ │ ├── op_config.rs │ │ │ │ ├── op_incoming.rs │ │ │ │ ├── op_outgoing.rs │ │ │ │ ├── provided_struct.rs │ │ │ │ ├── trait_signature.rs │ │ │ │ ├── type_def.rs │ │ │ │ └── wrapper_fn.rs │ │ └── lib.rs │ └── tests │ │ └── testdata │ │ └── component.yaml │ ├── wick-component-wasmrs │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── component.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── wasmrs_host.rs │ │ └── wasmrs_module.rs │ ├── wick-component │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── adapters.rs │ │ ├── adapters │ │ │ ├── binary.rs │ │ │ ├── binary │ │ │ │ ├── interleaved_pairs.rs │ │ │ │ └── paired_right_stream.rs │ │ │ ├── generic.rs │ │ │ ├── generic │ │ │ │ └── raw.rs │ │ │ ├── unary.rs │ │ │ └── unary │ │ │ │ ├── outputs.rs │ │ │ │ └── simple.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── outputs.rs │ │ ├── serde_util.rs │ │ └── serde_util │ │ │ └── enum_repr.rs │ └── tests │ │ └── serde.rs │ ├── wick-config │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── Justfile │ ├── README.md │ ├── definitions │ │ ├── json-schema.json.tpl │ │ ├── json-schema.ts │ │ ├── newer.ts │ │ ├── v0 │ │ │ ├── doc-templates │ │ │ │ └── rust │ │ │ │ │ ├── partials │ │ │ │ │ ├── alias-definition.hbs │ │ │ │ │ ├── enum-definition.hbs │ │ │ │ │ ├── expand-type.hbs │ │ │ │ │ ├── expand-value.hbs │ │ │ │ │ ├── type-definition.hbs │ │ │ │ │ └── union-definition.hbs │ │ │ │ │ └── root.hbs │ │ │ ├── manifest.apex │ │ │ └── templates │ │ │ │ ├── json-schema │ │ │ │ ├── manifest.hbs │ │ │ │ └── partials │ │ │ │ │ ├── expand-type.hbs │ │ │ │ │ ├── schema-definition-enum.hbs │ │ │ │ │ └── schema-definition-type.hbs │ │ │ │ ├── rust │ │ │ │ ├── partials │ │ │ │ │ ├── enum-definition.hbs │ │ │ │ │ ├── expand-type.hbs │ │ │ │ │ ├── expand-value.hbs │ │ │ │ │ ├── module.hbs │ │ │ │ │ └── type-definition.hbs │ │ │ │ └── root.hbs │ │ │ │ └── typescript │ │ │ │ └── index.hbs │ │ └── v1 │ │ │ ├── doc-templates │ │ │ └── rust │ │ │ │ ├── partials │ │ │ │ ├── alias-definition.hbs │ │ │ │ ├── enum-definition.hbs │ │ │ │ ├── expand-type.hbs │ │ │ │ ├── expand-value.hbs │ │ │ │ ├── type-definition.hbs │ │ │ │ └── union-definition.hbs │ │ │ │ └── root.hbs │ │ │ ├── manifest.apex │ │ │ └── templates │ │ │ ├── json-schema │ │ │ ├── manifest.hbs │ │ │ └── partials │ │ │ │ ├── expand-type.hbs │ │ │ │ ├── schema-definition-alias.hbs │ │ │ │ ├── schema-definition-enum.hbs │ │ │ │ ├── schema-definition-type.hbs │ │ │ │ └── schema-definition-union.hbs │ │ │ ├── rust │ │ │ ├── partials │ │ │ │ ├── alias-definition.hbs │ │ │ │ ├── enum-definition.hbs │ │ │ │ ├── expand-type.hbs │ │ │ │ ├── expand-value.hbs │ │ │ │ ├── module.hbs │ │ │ │ ├── type-definition.hbs │ │ │ │ └── union-definition.hbs │ │ │ └── root.hbs │ │ │ └── typescript │ │ │ ├── index.hbs │ │ │ └── partials │ │ │ ├── default-value.hbs │ │ │ ├── expand-type.hbs │ │ │ ├── sanitize-id.hbs │ │ │ ├── schema-definition-alias.hbs │ │ │ ├── schema-definition-enum.hbs │ │ │ ├── schema-definition-type.hbs │ │ │ └── schema-definition-union.hbs │ ├── docs │ │ ├── v0.md │ │ └── v1.md │ ├── json-schema │ │ ├── manifest.json │ │ ├── v0 │ │ │ └── manifest.json │ │ └── v1 │ │ │ └── manifest.json │ ├── src │ │ ├── audit.rs │ │ ├── config.rs │ │ ├── config │ │ │ ├── app_config.rs │ │ │ ├── app_config │ │ │ │ ├── triggers.rs │ │ │ │ └── triggers │ │ │ │ │ ├── cli.rs │ │ │ │ │ ├── http.rs │ │ │ │ │ ├── http │ │ │ │ │ ├── middleware.rs │ │ │ │ │ ├── proxy_router.rs │ │ │ │ │ ├── raw_router.rs │ │ │ │ │ ├── rest_router.rs │ │ │ │ │ └── static_router.rs │ │ │ │ │ ├── time.rs │ │ │ │ │ └── wasm_command.rs │ │ │ ├── cache.rs │ │ │ ├── common.rs │ │ │ ├── common │ │ │ │ ├── bindings.rs │ │ │ │ ├── component_definition.rs │ │ │ │ ├── component_implementation.rs │ │ │ │ ├── error_behavior.rs │ │ │ │ ├── exposed_resources.rs │ │ │ │ ├── glob.rs │ │ │ │ ├── host_definition.rs │ │ │ │ ├── http.rs │ │ │ │ ├── import_definition.rs │ │ │ │ ├── interface.rs │ │ │ │ ├── liquid_json_config.rs │ │ │ │ ├── metadata.rs │ │ │ │ ├── operation_definition.rs │ │ │ │ ├── package_definition.rs │ │ │ │ ├── resources.rs │ │ │ │ ├── settings.rs │ │ │ │ ├── template_config.rs │ │ │ │ └── test_case.rs │ │ │ ├── component_config.rs │ │ │ ├── component_config │ │ │ │ ├── composite.rs │ │ │ │ ├── wasm_component_model.rs │ │ │ │ └── wasmrs.rs │ │ │ ├── components.rs │ │ │ ├── components │ │ │ │ ├── grpcurl.rs │ │ │ │ ├── http_client.rs │ │ │ │ ├── manifest.rs │ │ │ │ ├── native.rs │ │ │ │ ├── reference.rs │ │ │ │ ├── sql.rs │ │ │ │ ├── types.rs │ │ │ │ └── wasm.rs │ │ │ ├── configuration_tree.rs │ │ │ ├── import_cache.rs │ │ │ ├── lockdown_config.rs │ │ │ ├── lockdown_config │ │ │ │ └── resources.rs │ │ │ ├── permissions.rs │ │ │ ├── test_config.rs │ │ │ └── types_config.rs │ │ ├── error.rs │ │ ├── helpers.rs │ │ ├── lib.rs │ │ ├── load.rs │ │ ├── lockdown.rs │ │ ├── lockdown │ │ │ ├── error.rs │ │ │ ├── port.rs │ │ │ ├── url.rs │ │ │ └── volume.rs │ │ ├── traits.rs │ │ ├── utils.rs │ │ ├── utils │ │ │ └── config.rs │ │ ├── v0.rs │ │ ├── v0 │ │ │ ├── conversions.rs │ │ │ └── parse.rs │ │ ├── v1.rs │ │ └── v1 │ │ │ ├── conversions.rs │ │ │ ├── conversions │ │ │ ├── impls.rs │ │ │ ├── root_configs.rs │ │ │ ├── root_configs │ │ │ │ ├── lockdown.rs │ │ │ │ └── tests.rs │ │ │ └── triggers │ │ │ │ └── mod.rs │ │ │ ├── helpers.rs │ │ │ ├── helpers │ │ │ ├── flow_ast.rs │ │ │ └── interface_types.rs │ │ │ └── parse.rs │ ├── tests │ │ ├── assets.rs │ │ ├── assets │ │ │ ├── test-application │ │ │ │ ├── app.wick │ │ │ │ ├── assets │ │ │ │ │ └── test.js │ │ │ │ ├── dir1 │ │ │ │ │ ├── dir2 │ │ │ │ │ │ └── test.js │ │ │ │ │ └── test.js │ │ │ │ └── dir2 │ │ │ │ │ ├── dir2 │ │ │ │ │ └── test.js │ │ │ │ │ └── test.js │ │ │ └── test-component │ │ │ │ ├── assets │ │ │ │ ├── icon.png │ │ │ │ └── test.fake.wasm │ │ │ │ └── component.wick │ │ ├── lockdown.rs │ │ ├── manifests │ │ │ ├── v0 │ │ │ │ ├── bad-yaml.yaml │ │ │ │ ├── collections.yaml │ │ │ │ ├── logger-shortform.yaml │ │ │ │ ├── logger.yaml │ │ │ │ ├── minimal.yaml │ │ │ │ ├── noversion.yaml │ │ │ │ ├── ns.yaml │ │ │ │ └── sender.yaml │ │ │ └── v1 │ │ │ │ ├── component-extended.yaml │ │ │ │ ├── component-old.yaml │ │ │ │ ├── component-resources.yaml │ │ │ │ ├── component.yaml │ │ │ │ ├── http-types.yaml │ │ │ │ ├── import-types.yaml │ │ │ │ ├── lockdown.yaml │ │ │ │ ├── logger.yaml │ │ │ │ ├── operations.yaml │ │ │ │ ├── template-expansion.yaml │ │ │ │ └── tests.yaml │ │ ├── types.rs │ │ ├── utils │ │ │ └── mod.rs │ │ ├── v0_load_from_file.rs │ │ └── v1_load_from_file.rs │ └── typescript │ │ ├── v0.ts │ │ └── v1.ts │ ├── wick-host │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── examples │ │ └── basic-host.rs │ ├── manifests │ │ └── logger.yaml │ ├── src │ │ ├── app_host.rs │ │ ├── collection.rs │ │ ├── component_host.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── traits.rs │ │ └── triggers.rs │ └── tests │ │ ├── app.rs │ │ ├── manifests │ │ └── v1 │ │ │ └── app_config │ │ │ └── basic.yaml │ │ ├── triggers.rs │ │ └── utils │ │ └── mod.rs │ ├── wick-interface-types │ ├── .vscode │ │ └── settings.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── field.rs │ │ ├── lib.rs │ │ ├── parser.rs │ │ ├── signatures.rs │ │ ├── signatures │ │ │ ├── component.rs │ │ │ └── operation.rs │ │ ├── traits.rs │ │ ├── types.rs │ │ └── types │ │ │ ├── enum_def.rs │ │ │ ├── struct_def.rs │ │ │ └── union_def.rs │ ├── tests │ │ ├── parser.rs │ │ ├── serde.rs │ │ └── testdata │ │ │ ├── http-types.yaml │ │ │ ├── interface-test.json │ │ │ └── interface.json │ └── types │ │ └── interface.apex │ ├── wick-invocation-server │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── error.rs │ │ ├── invocation_server.rs │ │ └── lib.rs │ ├── wick-logger │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── logger.rs │ │ ├── logger │ │ └── otel.rs │ │ └── options.rs │ ├── wick-oci-utils │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── artifacts │ │ │ ├── darwin-amd64.txt │ │ │ ├── linux-amd64.txt │ │ │ ├── linux-arm64.txt │ │ │ └── manifest.yml │ │ ├── pull-manifest.rs │ │ ├── pull.rs │ │ └── push.rs │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── manifest.rs │ │ ├── options.rs │ │ ├── package.rs │ │ ├── package │ │ ├── annotations.rs │ │ ├── media_types.rs │ │ ├── pull.rs │ │ └── push.rs │ │ ├── pull.rs │ │ ├── push.rs │ │ └── utils.rs │ ├── wick-operation │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── lib.rs │ ├── wick-package │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── package.rs │ │ └── utils.rs │ └── tests │ │ ├── files │ │ ├── assets │ │ │ ├── icon.png │ │ │ ├── static │ │ │ │ ├── bla.txt │ │ │ │ └── icon.png │ │ │ └── test.js │ │ ├── component.yaml │ │ ├── http-types.yaml │ │ ├── include.wick │ │ ├── jinja.wick │ │ ├── mytypes.wick │ │ ├── test.fake.wasm │ │ └── tests.wick │ │ ├── wick_package_integration.rs │ │ └── wick_package_types_integration.rs │ ├── wick-packet │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── b64_bytes.rs │ │ ├── collection_link.rs │ │ ├── context.rs │ │ ├── datetime.rs │ │ ├── entity.rs │ │ ├── error.rs │ │ ├── inherent.rs │ │ ├── input.rs │ │ ├── invocation.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── metadata.rs │ │ ├── output.rs │ │ ├── packet.rs │ │ ├── packet_stream.rs │ │ ├── runtime.rs │ │ ├── stream_map.rs │ │ ├── validation.rs │ │ ├── vpacket.rs │ │ └── wrapped_type.rs │ ├── wick-rpc │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── Justfile │ ├── LICENSE │ ├── README.md │ ├── codegen │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── proto │ │ └── wick.proto │ └── src │ │ ├── client.rs │ │ ├── error.rs │ │ ├── generated.rs │ │ ├── generated │ │ ├── descriptors.bin │ │ └── wick.rs │ │ ├── lib.rs │ │ ├── types.rs │ │ └── types │ │ └── conversions.rs │ ├── wick-runtime │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── components.rs │ │ ├── components │ │ │ ├── component_service.rs │ │ │ ├── error.rs │ │ │ ├── scope_component.rs │ │ │ └── validation.rs │ │ ├── dev.rs │ │ ├── dispatch.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── runtime.rs │ │ ├── runtime │ │ │ ├── scope.rs │ │ │ └── scope │ │ │ │ ├── child_init.rs │ │ │ │ ├── component_registry.rs │ │ │ │ ├── error.rs │ │ │ │ ├── init.rs │ │ │ │ └── utils.rs │ │ ├── test.rs │ │ └── utils.rs │ └── tests │ │ ├── errors.rs │ │ ├── manifests │ │ ├── v0 │ │ │ ├── bad-wasmrs-component.yaml │ │ │ ├── echo.yaml │ │ │ ├── errors │ │ │ │ ├── errors.yaml │ │ │ │ └── panics.yaml │ │ │ ├── global-collection-def.yaml │ │ │ ├── nested-schematics.yaml │ │ │ ├── senders.yaml │ │ │ ├── simple.yaml │ │ │ ├── sub-network-child.yaml │ │ │ ├── sub-network-parent.yaml │ │ │ └── wasmrs-component.yaml │ │ └── v1 │ │ │ ├── bad-wasmrs-component.yaml │ │ │ ├── component-context-vars-passthrough-child.yaml │ │ │ ├── component-context-vars-passthrough.yaml │ │ │ ├── composite-inherit.wick │ │ │ └── flow_with_inputless_component.yaml │ │ ├── utils │ │ └── mod.rs │ │ ├── v0_components.rs │ │ ├── v1_components.rs │ │ ├── validation.rs │ │ └── wasm.rs │ ├── wick-settings │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── settings.rs │ ├── wick-test │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── assertion_packet.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── operators.rs │ │ ├── operators │ │ │ ├── contains.rs │ │ │ ├── order.rs │ │ │ └── regex.rs │ │ ├── runner.rs │ │ ├── test_group.rs │ │ ├── test_suite.rs │ │ ├── unit_test.rs │ │ └── utils.rs │ └── tests │ │ └── done_tolerance.rs │ ├── wick-trigger-cli │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── cli.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── test.rs │ ├── wick-trigger-http │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── http.rs │ │ ├── http │ │ │ ├── component_utils.rs │ │ │ ├── conversions.rs │ │ │ ├── error.rs │ │ │ ├── middleware.rs │ │ │ ├── routers.rs │ │ │ ├── routers │ │ │ │ ├── proxy.rs │ │ │ │ ├── raw.rs │ │ │ │ ├── rest.rs │ │ │ │ ├── rest │ │ │ │ │ ├── error.rs │ │ │ │ │ ├── openapi.rs │ │ │ │ │ └── route.rs │ │ │ │ ├── static_.rs │ │ │ │ └── static_ │ │ │ │ │ ├── index_list.rs │ │ │ │ │ └── template.html │ │ │ └── service_factory.rs │ │ ├── lib.rs │ │ └── test.rs │ └── tests │ │ └── manifests │ │ └── v1 │ │ └── app_config │ │ ├── app-http-server-wasm.wick │ │ ├── rest-router-errors.wick │ │ └── rest-router-errors │ │ └── component.wick │ ├── wick-trigger-time │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── lib.rs │ │ ├── test.rs │ │ ├── time.rs │ │ └── time │ │ └── error.rs │ ├── wick-trigger-wasm-command │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── state.rs │ │ └── trigger.rs │ └── wit │ │ └── worlds.wit │ ├── wick-trigger │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── resources.rs │ │ └── trigger.rs │ ├── wick-wascap │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── src │ │ ├── claims.rs │ │ ├── claims │ │ │ └── validate.rs │ │ ├── component.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── parser.rs │ │ ├── v0.rs │ │ └── v1.rs │ └── test │ │ ├── 1.v0.signed.wasm │ │ ├── 2.v0.signed.wasm │ │ ├── 3.v0.signed.wasm │ │ ├── 4.v0.signed.wasm │ │ └── test_wasi_component.wasm │ ├── wick-wasm-engine │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── engine.rs │ │ ├── lib.rs │ │ └── store.rs │ └── wick-xdg │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ └── src │ ├── directories.rs │ ├── directory.rs │ ├── error.rs │ ├── file.rs │ └── lib.rs ├── docker ├── Dockerfile.latest └── Dockerfile.nightly ├── docs ├── .gitignore ├── .hugo_build.lock ├── archetypes │ └── default.md ├── content │ ├── _index.md │ └── wick │ │ ├── _index.md │ │ ├── configuration │ │ ├── _index.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── v0.md │ │ │ └── v1.md │ │ └── v1 │ │ │ └── shortform │ │ │ └── _index.md │ │ ├── getting-started │ │ ├── _index.md │ │ ├── database.md │ │ ├── installation.md │ │ ├── package.md │ │ ├── rest-api.md │ │ └── webassembly.md │ │ ├── introduction │ │ ├── _index.md │ │ ├── concepts.md │ │ └── streaming.md │ │ └── reference │ │ ├── SDKs │ │ ├── _index.md │ │ ├── browser.md │ │ └── nodejs.md │ │ ├── _index.md │ │ ├── components │ │ ├── _index.md │ │ ├── composite.md │ │ ├── http-client.md │ │ └── sql.md │ │ └── triggers │ │ ├── _index.md │ │ ├── cli │ │ └── _index.md │ │ ├── http │ │ ├── _index.md │ │ ├── proxy-router.md │ │ ├── raw-router.md │ │ ├── rest-router.md │ │ └── static-router.md │ │ └── time │ │ └── _index.md ├── data │ └── examples ├── docs.wick ├── hugo.toml ├── layouts │ ├── partials │ │ ├── configuration-reference.html │ │ └── site-header.html │ └── shortcodes │ │ ├── app_config_footer.html │ │ ├── app_config_header.html │ │ ├── component_config_footer.html │ │ ├── component_config_header.html │ │ ├── excerpt.html │ │ ├── metadata.html │ │ ├── oplist.html │ │ ├── rawhtml.html │ │ ├── router_config_header.html │ │ ├── v1ref.html │ │ └── value.html ├── static │ ├── component-loader │ │ ├── _app │ │ │ ├── immutable │ │ │ │ ├── assets │ │ │ │ │ ├── 0.0744d121.css │ │ │ │ │ ├── 2.699e8b96.css │ │ │ │ │ ├── _layout.bdcd143a.css │ │ │ │ │ └── _page.699e8b96.css │ │ │ │ ├── chunks │ │ │ │ │ ├── index.5d90bc61.js │ │ │ │ │ ├── index.765f5b7c.js │ │ │ │ │ ├── scheduler.eff79e75.js │ │ │ │ │ └── singletons.5f4df5e1.js │ │ │ │ ├── entry │ │ │ │ │ ├── app.55abb043.js │ │ │ │ │ └── start.77d70472.js │ │ │ │ ├── nodes │ │ │ │ │ ├── 0.af9fe1c4.js │ │ │ │ │ ├── 1.d1834ace.js │ │ │ │ │ └── 2.e1d5a895.js │ │ │ │ └── workers │ │ │ │ │ └── component-worker-290b246e.js │ │ │ └── version.json │ │ ├── candle-icon.svg │ │ ├── index.html │ │ └── wick_logo.png │ ├── debug.js │ └── images │ │ ├── candle-icon.png │ │ └── gifs │ │ ├── wick-config-audit.gif │ │ ├── wick-config-lockdown.gif │ │ ├── wick-invoke.gif │ │ ├── wick-list.gif │ │ ├── wick-new-component.gif │ │ └── wick-test.gif └── themes │ └── hugo-theme-techdoc │ ├── .editorconfig │ ├── .github │ ├── FUNDING.yml │ ├── demo_config.toml │ └── workflows │ │ └── gh-pages.yml │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── archetypes │ └── default.md │ ├── assets │ └── scss │ │ ├── _component.scss │ │ ├── _project.scss │ │ ├── _structure.scss │ │ ├── _variable.scss │ │ ├── chroma.scss │ │ ├── foundation │ │ ├── _element.scss │ │ ├── _index.scss │ │ ├── _normalize.scss │ │ ├── _reset.scss │ │ └── _stack.scss │ │ ├── function │ │ ├── _calc-font-size.scss │ │ ├── _calc-stack.scss │ │ ├── _contrast-color.scss │ │ └── _strip-unit.scss │ │ └── theme.scss │ ├── docker-compose.yml │ ├── exampleSite │ ├── config.toml │ ├── content │ │ ├── _index.md │ │ ├── about.md │ │ ├── archives │ │ │ ├── hello_world.md │ │ │ ├── hello_world1.md │ │ │ └── hello_world2.md │ │ ├── blog │ │ │ ├── hello_world.md │ │ │ ├── hello_world1.md │ │ │ └── hello_world2.md │ │ ├── chapter1 │ │ │ ├── 1.md │ │ │ ├── 2.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ └── _index.md │ │ ├── chapter2 │ │ │ ├── 1.md │ │ │ ├── 2.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ ├── 5.md │ │ │ └── _index.md │ │ ├── chapter3 │ │ │ ├── 1.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ ├── _index.md │ │ │ └── chapter3-2 │ │ │ │ ├── 1.md │ │ │ │ ├── 2.md │ │ │ │ ├── 3.md │ │ │ │ ├── 4.md │ │ │ │ └── _index.md │ │ ├── chapter4 │ │ │ ├── _index.md │ │ │ └── chapter4-1 │ │ │ │ ├── _index.md │ │ │ │ └── chapter4-1-1 │ │ │ │ ├── _index.md │ │ │ │ └── chapter4-1-1-1 │ │ │ │ ├── _index.md │ │ │ │ └── chapter4-1-1-1-1 │ │ │ │ ├── _index.md │ │ │ │ └── chapter4-1-1-1-1-1 │ │ │ │ ├── _index.md │ │ │ │ └── chapter4-1-1-1-1-1-1 │ │ │ │ └── _index.md │ │ ├── entry │ │ │ ├── hello_world.md │ │ │ ├── hello_world1.md │ │ │ └── hello_world2.md │ │ ├── getting-started │ │ │ ├── _index.md │ │ │ ├── configuration.md │ │ │ ├── installation.md │ │ │ └── screenshot.md │ │ ├── hello_world.md │ │ ├── post │ │ │ ├── creating-a-new-theme.md │ │ │ ├── goisforlovers.md │ │ │ ├── hugoisforlovers.md │ │ │ └── migrate-from-jekyll.md │ │ ├── posts │ │ │ └── hello_world.md │ │ └── sample │ │ │ ├── _index.md │ │ │ ├── build-in-shortcodes.md │ │ │ ├── custom-shortcodes.md │ │ │ ├── markdown-syntax.md │ │ │ ├── search-shortcode.md │ │ │ └── table-of-contents.md │ └── static │ │ └── images │ │ ├── og-image.png │ │ └── pexels-photo-196666.jpeg │ ├── gulpfile.js │ ├── images │ ├── screenshot-edit-link.png │ ├── screenshot-open-menu.png │ ├── screenshot-slide-menu.gif │ ├── screenshot-theme-color.png │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.algolia.json │ │ ├── list.html │ │ └── single.html │ ├── blog │ │ ├── li.html │ │ ├── list.html │ │ ├── single.html │ │ └── summary.html │ ├── index.html │ ├── partials │ │ ├── content-footer.html │ │ ├── custom-css.html │ │ ├── custom-head.html │ │ ├── edit-meta.html │ │ ├── edit-page.html │ │ ├── footer.html │ │ ├── global-menu.html │ │ ├── head.html │ │ ├── last-updated.html │ │ ├── menu │ │ │ ├── open-menu.html │ │ │ └── slide-menu.html │ │ ├── meta │ │ │ ├── chroma.html │ │ │ ├── google-analytics-async.html │ │ │ ├── google-site-verification.html │ │ │ └── tag-manager.html │ │ ├── notification.html │ │ ├── pagination.html │ │ ├── powered.html │ │ ├── prepend-body.html │ │ ├── search.html │ │ ├── sidebar-footer.html │ │ ├── sidebar.html │ │ ├── site-header.html │ │ └── table-of-contents.html │ ├── posts │ │ ├── list.html │ │ └── single.html │ └── shortcodes │ │ ├── button.html │ │ ├── code.html │ │ ├── panel.html │ │ └── search.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── js │ │ ├── code.js │ │ ├── headerlink.js │ │ ├── jquery.backtothetop │ │ │ ├── jquery.backtothetop.js │ │ │ └── jquery.backtothetop.min.js │ │ ├── keydown-nav.js │ │ ├── main.js │ │ └── sidebar-menu.js │ └── scss │ │ ├── _component.scss │ │ ├── _project.scss │ │ ├── _structure.scss │ │ ├── _variable.scss │ │ ├── chroma.scss │ │ ├── foundation │ │ ├── _element.scss │ │ ├── _index.scss │ │ ├── _normalize.scss │ │ ├── _reset.scss │ │ └── _stack.scss │ │ ├── function │ │ ├── _calc-font-size.scss │ │ ├── _calc-stack.scss │ │ ├── _contrast-color.scss │ │ └── _strip-unit.scss │ │ └── theme.scss │ ├── static │ ├── css │ │ ├── chroma.css │ │ ├── chroma.min.css │ │ ├── theme.css │ │ └── theme.min.css │ └── js │ │ ├── bundle.js │ │ └── fontawesome6 │ │ └── all.min.js │ ├── theme.toml │ └── webpack.config.js ├── etc ├── commitlint.config.js ├── deny.toml ├── docker-compose.yml ├── integration │ ├── httpbin.sh │ ├── mssql.sh │ ├── postgres.sh │ ├── registry.sh │ ├── sqlite.sh │ ├── sqlite │ │ ├── init.sql │ │ └── schema.sql │ └── utils.sh ├── lints.rs ├── udeps.sh └── update-lints.ts ├── examples ├── cli │ ├── wasm-calling-postgres.wick │ ├── wasm-cli │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.wick │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ ├── wasm-command-component.wick │ └── wasm-component-calls.wick ├── component-model │ ├── adapters │ │ ├── command │ │ │ ├── wasi_snapshot_preview1.command-v13.0.0.wasm │ │ │ └── wasi_snapshot_preview1.wasm │ │ └── reactor │ │ │ ├── wasi_snapshot_preview1.reactor-v13.0.0.wasm │ │ │ └── wasi_snapshot_preview1.wasm │ └── wasi-command │ │ ├── Cargo.toml │ │ ├── Justfile │ │ └── src │ │ └── main.rs ├── components │ ├── cli-trigger │ │ ├── .cargo │ │ │ └── config │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── app.wick │ │ ├── build.rs │ │ ├── component.wick │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ ├── composite-db-import.wick │ ├── composite-imports.wick │ ├── composite-provides.wick │ ├── composite-requires.wick │ ├── config-generator │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.wick │ │ ├── justfile │ │ └── src │ │ │ └── lib.rs │ ├── echo.wick │ ├── hello-world.wick │ ├── http-client-with-config.wick │ ├── http-client.wick │ ├── tests.wick │ └── wasi-fs │ │ ├── .cargo │ │ └── config │ │ ├── .gitignore │ │ ├── .vscode │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.wick │ │ ├── justfile │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ └── testdata │ │ └── file.txt ├── db │ ├── azuresql-component.wick │ ├── postgres-component.wick │ ├── sqlite-component.wick │ ├── sqlite-inmemory-component.wick │ └── tests │ │ ├── postgres-date-tests.wick │ │ ├── postgres-null-tests.wick │ │ └── postgres-numeric-tests.wick ├── http │ ├── http-client.wick │ ├── middleware.wick │ ├── middleware │ │ ├── redirect.wick │ │ └── request │ │ │ ├── .cargo │ │ │ └── config │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ └── settings.json │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── component.wick │ │ │ ├── justfile │ │ │ └── src │ │ │ └── lib.rs │ ├── proxy-router.wick │ ├── raw-router.wick │ ├── rest-router.wick │ ├── rest-router │ │ └── component.wick │ ├── staticfile-router.wick │ └── wasm-http-call │ │ ├── client.wick │ │ ├── harness.wick │ │ └── wasm-component │ │ ├── .cargo │ │ └── config │ │ ├── .gitignore │ │ ├── .vscode │ │ └── settings.json │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── component.wick │ │ ├── justfile │ │ └── src │ │ ├── generated │ │ └── mod.rs │ │ └── lib.rs ├── misc │ └── multi-trigger.wick ├── time │ └── time.wick └── typescript-config │ └── sqlite-component.ts ├── installer ├── setup.ps1 └── setup.sh ├── integration-tests ├── cli-tests │ ├── Cargo.toml │ ├── src │ │ └── lib.rs │ └── tests │ │ └── cmd │ │ ├── db │ │ ├── azuresql-tx-test.wick │ │ ├── mssql-component.toml │ │ ├── postgres-component-alt1.toml │ │ ├── postgres-component.toml │ │ └── sqlite-component.toml │ │ ├── install │ │ └── hello-world.toml │ │ └── run │ │ ├── hello-world.toml │ │ └── wasm-component-calls.toml ├── codegen-bin │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── codegen-tests │ ├── Cargo.toml │ ├── Justfile │ ├── src │ │ ├── import_types │ │ │ └── mod.rs │ │ └── lib.rs │ └── tests │ │ └── testdata │ │ ├── component.wick │ │ ├── import-types.wick │ │ └── types-config.wick ├── integration │ ├── .vscode │ │ └── settings.json │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── test.rs │ │ └── test │ │ ├── wick_component_cli.rs │ │ ├── wick_invocation_server.rs │ │ ├── wick_packet_test.rs │ │ └── wick_test.rs ├── template │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── testdata │ └── files │ ├── assets │ ├── icon.png │ ├── static │ │ ├── bla.txt │ │ └── icon.png │ ├── test.fake.wasm │ └── test.js │ ├── component.yaml │ ├── http-types.yaml │ ├── jinja.wick │ └── tests.wick ├── rust-toolchain.toml ├── rustfmt.toml ├── src ├── commands.rs ├── commands │ ├── config.rs │ ├── config │ │ ├── audit.rs │ │ ├── dot.rs │ │ └── expand.rs │ ├── install.rs │ ├── invoke.rs │ ├── key.rs │ ├── key │ │ ├── gen.rs │ │ ├── get.rs │ │ └── list.rs │ ├── list.rs │ ├── new.rs │ ├── new │ │ ├── app.rs │ │ ├── component.rs │ │ └── component │ │ │ ├── composite.rs │ │ │ ├── http.rs │ │ │ ├── sql.rs │ │ │ └── wasmrs.rs │ ├── query.rs │ ├── registry.rs │ ├── registry │ │ ├── login.rs │ │ ├── manifest.rs │ │ ├── pull.rs │ │ └── push.rs │ ├── rpc.rs │ ├── rpc │ │ ├── invoke.rs │ │ ├── list.rs │ │ └── stats.rs │ ├── run.rs │ ├── serve.rs │ ├── show.rs │ ├── show │ │ └── env.rs │ ├── test.rs │ ├── wasm.rs │ └── wasm │ │ ├── inspect.rs │ │ └── sign.rs ├── io.rs ├── keys.rs ├── main.rs ├── oci.rs ├── options.rs ├── options │ ├── component.rs │ ├── logging.rs │ └── oci.rs ├── panic.rs ├── utils.rs ├── wasm.rs └── wick_host.rs ├── templates └── rust │ ├── .cargo │ └── config │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── Cargo.toml │ ├── build.rs │ ├── component.wick │ ├── justfile │ └── src │ └── lib.rs ├── tests ├── invoke.rs ├── invoke │ ├── integration │ │ └── registry.toml.flakey │ └── unit │ │ ├── app-cli.wick │ │ ├── app.toml │ │ ├── app.wick │ │ ├── log.yaml │ │ ├── stdin.toml │ │ └── v1-wasmrs.toml ├── new.rs ├── new │ └── unit │ │ ├── app-cli.toml │ │ ├── app-http.toml │ │ ├── app-time.toml │ │ ├── app.toml │ │ ├── component-composite.toml │ │ ├── component-http.toml │ │ ├── component-sql.toml │ │ └── component-wasm.toml ├── query.rs ├── query │ └── unit │ │ ├── jq-style.toml │ │ ├── no-curlies.toml │ │ └── with-curlies.toml ├── run.rs ├── run │ ├── integration │ │ └── postgres.toml │ └── unit │ │ ├── anonymous-component.args.wick │ │ ├── anonymous-component.toml │ │ ├── file-reader-cli.wick │ │ ├── file-reader-lockdown-fail.toml │ │ ├── file-reader-lockdown-pass-wildcard-components.toml │ │ ├── file-reader-lockdown-pass-wildcard-dir.toml │ │ ├── file-reader-lockdown-pass.toml │ │ ├── file-reader.toml │ │ ├── file-reader.wick │ │ ├── imported-component.args.wick │ │ ├── imported-component.toml │ │ ├── lockdown-fail.wick │ │ ├── lockdown-pass-wildcard-components.wick │ │ ├── lockdown-pass-wildcard-dir.wick │ │ ├── lockdown-pass.wick │ │ ├── noop.yaml │ │ ├── stdin.toml │ │ └── wasm-command-component.toml ├── serve.rs ├── test.rs ├── test │ └── unit │ │ └── wasm.toml ├── testfile.md └── utils │ └── mod.rs ├── tools └── wick-vscode-extension │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── icons │ ├── wick-icon-128.png │ └── wick-icon-32.png │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── extension.ts │ └── test │ │ ├── runTest.ts │ │ └── suite │ │ ├── extension.test.ts │ │ └── index.ts │ ├── tsconfig.json │ ├── vsc-extension-quickstart.md │ ├── wick-development-framework-0.3.0.vsix │ └── wick-icon-theme.json └── wit └── worlds.wit /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.cargo/config -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.clippy.toml -------------------------------------------------------------------------------- /.config/nextest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.config/nextest.toml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | --- 2 | blank_issues_enabled: true 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/ISSUE_TEMPLATE/improvement.md -------------------------------------------------------------------------------- /.github/workflows/clippy-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/clippy-check.yaml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/commitlint.yaml -------------------------------------------------------------------------------- /.github/workflows/docs-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/docs-check.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/formatting.yaml -------------------------------------------------------------------------------- /.github/workflows/licenses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/licenses.yaml -------------------------------------------------------------------------------- /.github/workflows/mono_workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/mono_workflow.yaml -------------------------------------------------------------------------------- /.github/workflows/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.github/workflows/release.ts -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/README.md -------------------------------------------------------------------------------- /crates/components/wick-http-client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/CHANGELOG.md -------------------------------------------------------------------------------- /crates/components/wick-http-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/Cargo.toml -------------------------------------------------------------------------------- /crates/components/wick-http-client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/components/wick-http-client/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/src/component.rs -------------------------------------------------------------------------------- /crates/components/wick-http-client/src/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/src/conversions.rs -------------------------------------------------------------------------------- /crates/components/wick-http-client/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/src/error.rs -------------------------------------------------------------------------------- /crates/components/wick-http-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-http-client/src/lib.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/CHANGELOG.md -------------------------------------------------------------------------------- /crates/components/wick-sql/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/Cargo.toml -------------------------------------------------------------------------------- /crates/components/wick-sql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/LICENSE -------------------------------------------------------------------------------- /crates/components/wick-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/README.md -------------------------------------------------------------------------------- /crates/components/wick-sql/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/common.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/common/sql_wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/common/sql_wrapper.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/component.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/error.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/lib.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/mssql_tiberius/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/mssql_tiberius/mod.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/sqlx/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/sqlx/component.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/sqlx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/sqlx/mod.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/sqlx/postgres.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/sqlx/postgres.rs -------------------------------------------------------------------------------- /crates/components/wick-sql/src/sqlx/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/components/wick-sql/src/sqlx/sqlite.rs -------------------------------------------------------------------------------- /crates/integration/test-baseline-component/.gitignore: -------------------------------------------------------------------------------- 1 | /src/generated 2 | -------------------------------------------------------------------------------- /crates/integration/test-baseline-component/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-baseline-component/Cargo.toml -------------------------------------------------------------------------------- /crates/integration/test-baseline-component/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-baseline-component/build.rs -------------------------------------------------------------------------------- /crates/integration/test-baseline-component/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-baseline-component/justfile -------------------------------------------------------------------------------- /crates/integration/test-baseline-component/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-baseline-component/src/lib.rs -------------------------------------------------------------------------------- /crates/integration/test-cli-trigger-component/.gitignore: -------------------------------------------------------------------------------- 1 | /src/generated 2 | -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/.gitignore: -------------------------------------------------------------------------------- 1 | /src/generated 2 | -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-cli-with-db/Cargo.toml -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-cli-with-db/build.rs -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-cli-with-db/component.yaml -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-cli-with-db/justfile -------------------------------------------------------------------------------- /crates/integration/test-cli-with-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/integration/test-cli-with-db/src/lib.rs -------------------------------------------------------------------------------- /crates/integration/test-http-trigger-component/.gitignore: -------------------------------------------------------------------------------- 1 | /src/generated 2 | -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/CHANGELOG.md -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/README.md -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/build.rs -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/component.yaml -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-cli/src/lib.rs -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/CHANGELOG.md -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/Cargo.toml -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/README.md: -------------------------------------------------------------------------------- 1 | # wick-interface-http 2 | 3 | Types and data structures for Wick HTTP components. -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/build.rs -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/component.yaml -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/src/lib.rs -------------------------------------------------------------------------------- /crates/interfaces/wick-interface-http/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/interfaces/wick-interface-http/tests/serde.rs -------------------------------------------------------------------------------- /crates/misc/asset-container/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/CHANGELOG.md -------------------------------------------------------------------------------- /crates/misc/asset-container/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/asset-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/README.md -------------------------------------------------------------------------------- /crates/misc/asset-container/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/src/assets.rs -------------------------------------------------------------------------------- /crates/misc/asset-container/src/assets/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/src/assets/flags.rs -------------------------------------------------------------------------------- /crates/misc/asset-container/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/src/error.rs -------------------------------------------------------------------------------- /crates/misc/asset-container/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/src/lib.rs -------------------------------------------------------------------------------- /crates/misc/asset-container/tests/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/asset-container/tests/assets.rs -------------------------------------------------------------------------------- /crates/misc/derive-asset-container/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /crates/misc/derive-asset-container/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/derive-asset-container/CHANGELOG.md -------------------------------------------------------------------------------- /crates/misc/derive-asset-container/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/derive-asset-container/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/derive-asset-container/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/derive-asset-container/src/lib.rs -------------------------------------------------------------------------------- /crates/misc/derive-asset-container/tests/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/derive-asset-container/tests/derive.rs -------------------------------------------------------------------------------- /crates/misc/performance-mark/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/CHANGELOG.md -------------------------------------------------------------------------------- /crates/misc/performance-mark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/performance-mark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/LICENSE -------------------------------------------------------------------------------- /crates/misc/performance-mark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/README.md -------------------------------------------------------------------------------- /crates/misc/performance-mark/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/src/error.rs -------------------------------------------------------------------------------- /crates/misc/performance-mark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/src/lib.rs -------------------------------------------------------------------------------- /crates/misc/performance-mark/src/performance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/src/performance.rs -------------------------------------------------------------------------------- /crates/misc/performance-mark/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/performance-mark/src/serde.rs -------------------------------------------------------------------------------- /crates/misc/seeded-random/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/CHANGELOG.md -------------------------------------------------------------------------------- /crates/misc/seeded-random/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/seeded-random/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/LICENSE -------------------------------------------------------------------------------- /crates/misc/seeded-random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/README.md -------------------------------------------------------------------------------- /crates/misc/seeded-random/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/src/lib.rs -------------------------------------------------------------------------------- /crates/misc/seeded-random/src/rng.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/src/rng.rs -------------------------------------------------------------------------------- /crates/misc/seeded-random/src/seed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/seeded-random/src/seed.rs -------------------------------------------------------------------------------- /crates/misc/tap-harness/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/CHANGELOG.md -------------------------------------------------------------------------------- /crates/misc/tap-harness/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/tap-harness/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/LICENSE -------------------------------------------------------------------------------- /crates/misc/tap-harness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/README.md -------------------------------------------------------------------------------- /crates/misc/tap-harness/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/src/lib.rs -------------------------------------------------------------------------------- /crates/misc/tap-harness/tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/tap-harness/tests/basic.rs -------------------------------------------------------------------------------- /crates/misc/test-logger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/test-logger/Cargo.toml -------------------------------------------------------------------------------- /crates/misc/test-logger/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/test-logger/LICENSE-APACHE -------------------------------------------------------------------------------- /crates/misc/test-logger/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/test-logger/LICENSE-MIT -------------------------------------------------------------------------------- /crates/misc/test-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/test-logger/README.md -------------------------------------------------------------------------------- /crates/misc/test-logger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/misc/test-logger/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/flow-component/.gitignore: -------------------------------------------------------------------------------- 1 | sample.dot 2 | -------------------------------------------------------------------------------- /crates/wick/flow-component/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/flow-component/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/flow-component/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/LICENSE -------------------------------------------------------------------------------- /crates/wick/flow-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/README.md -------------------------------------------------------------------------------- /crates/wick/flow-component/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/src/context.rs -------------------------------------------------------------------------------- /crates/wick/flow-component/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/flow-component/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-component/src/traits.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/LICENSE -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/README.md -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/ast.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/error.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/parse.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/parse/v0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/parse/v0.rs -------------------------------------------------------------------------------- /crates/wick/flow-expression-parser/src/parse/v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-expression-parser/src/parse/v1.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/.gitignore: -------------------------------------------------------------------------------- 1 | event_loop.json 2 | -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/LICENSE -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/README.md -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/error.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/graph.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/graph/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/graph/error.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/graph/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/graph/types.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/interpreter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/interpreter.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/macros.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/tests/bad-cases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/tests/bad-cases.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/tests/behavior.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/tests/behavior.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/tests/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/tests/core.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph-interpreter/tests/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph-interpreter/tests/test/mod.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/.gitignore: -------------------------------------------------------------------------------- 1 | sample.dot 2 | -------------------------------------------------------------------------------- /crates/wick/flow-graph/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/flow-graph/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/flow-graph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/LICENSE -------------------------------------------------------------------------------- /crates/wick/flow-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/README.md -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/connection.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/error.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/network.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/node.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/port.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/port.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/schematic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/schematic.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/schematic/dot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/schematic/dot.rs -------------------------------------------------------------------------------- /crates/wick/flow-graph/src/schematic/iterators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/flow-graph/src/schematic/iterators.rs -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/README.md -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-asset-reference/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-asset-reference/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/README.md -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/cli.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/cli/grpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/cli/grpc.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/options.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-cli/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-cli/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-codegen/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-codegen/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/README.md: -------------------------------------------------------------------------------- 1 | # wick-component-codegen 2 | -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/src/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-codegen/src/generate.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/src/generate/f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-codegen/src/generate/f.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-codegen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-codegen/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/README.md: -------------------------------------------------------------------------------- 1 | # wick-component-wasm 2 | -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/src/component.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-component-wasmrs/src/wasmrs_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component-wasmrs/src/wasmrs_host.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-component/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/README.md -------------------------------------------------------------------------------- /crates/wick/wick-component/src/adapters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/adapters.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/adapters/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/adapters/binary.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/adapters/generic.rs: -------------------------------------------------------------------------------- 1 | mod raw; 2 | -------------------------------------------------------------------------------- /crates/wick/wick-component/src/adapters/unary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/adapters/unary.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/macros.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/outputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/outputs.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/src/serde_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/src/serde_util.rs -------------------------------------------------------------------------------- /crates/wick/wick-component/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-component/tests/serde.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-config/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/Justfile -------------------------------------------------------------------------------- /crates/wick/wick-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/README.md -------------------------------------------------------------------------------- /crates/wick/wick-config/definitions/json-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/definitions/json-schema.ts -------------------------------------------------------------------------------- /crates/wick/wick-config/definitions/newer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/definitions/newer.ts -------------------------------------------------------------------------------- /crates/wick/wick-config/definitions/v0/manifest.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/definitions/v0/manifest.apex -------------------------------------------------------------------------------- /crates/wick/wick-config/definitions/v0/templates/typescript/index.hbs: -------------------------------------------------------------------------------- 1 | 2 | // The v0 TS-SDK is unsupported -------------------------------------------------------------------------------- /crates/wick/wick-config/definitions/v1/manifest.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/definitions/v1/manifest.apex -------------------------------------------------------------------------------- /crates/wick/wick-config/docs/v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/docs/v0.md -------------------------------------------------------------------------------- /crates/wick/wick-config/docs/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/docs/v1.md -------------------------------------------------------------------------------- /crates/wick/wick-config/json-schema/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/json-schema/manifest.json -------------------------------------------------------------------------------- /crates/wick/wick-config/json-schema/v0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/json-schema/v0/manifest.json -------------------------------------------------------------------------------- /crates/wick/wick-config/json-schema/v1/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/json-schema/v1/manifest.json -------------------------------------------------------------------------------- /crates/wick/wick-config/src/audit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/audit.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/app_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/app_config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/cache.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common/bindings.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common/glob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common/glob.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common/http.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common/metadata.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/common/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/common/settings.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/components.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/components/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/components/sql.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/components/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/components/wasm.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/import_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/import_cache.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/lockdown_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/lockdown_config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/permissions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/permissions.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/test_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/test_config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/config/types_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/config/types_config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/helpers.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/load.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lockdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lockdown.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lockdown/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lockdown/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lockdown/port.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lockdown/port.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lockdown/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lockdown/url.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/lockdown/volume.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/lockdown/volume.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/traits.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/utils/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/utils/config.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v0.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v0/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v0/conversions.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v0/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v0/parse.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1/conversions.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1/conversions/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1/conversions/impls.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1/helpers.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1/helpers/flow_ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1/helpers/flow_ast.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/src/v1/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/src/v1/parse.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/assets.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-application/assets/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!'); 2 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-application/dir1/dir2/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!'); 2 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-application/dir1/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!'); 2 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-application/dir2/dir2/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!'); 2 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-application/dir2/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!'); 2 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/assets/test-component/assets/test.fake.wasm: -------------------------------------------------------------------------------- 1 | 0xWASM_BUT_NOT_REALLY -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/lockdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/lockdown.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/manifests/v0/minimal.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | format: 0 3 | -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/manifests/v0/ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/manifests/v0/ns.yaml -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/manifests/v1/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/manifests/v1/tests.yaml -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/types.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/utils/mod.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/v0_load_from_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/v0_load_from_file.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/tests/v1_load_from_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/tests/v1_load_from_file.rs -------------------------------------------------------------------------------- /crates/wick/wick-config/typescript/v0.ts: -------------------------------------------------------------------------------- 1 | 2 | // The v0 TS-SDK is unsupported 3 | -------------------------------------------------------------------------------- /crates/wick/wick-config/typescript/v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-config/typescript/v1.ts -------------------------------------------------------------------------------- /crates/wick/wick-host/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-host/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-host/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-host/README.md: -------------------------------------------------------------------------------- 1 | # wick-host 2 | 3 | License: BSD-3-Clause 4 | -------------------------------------------------------------------------------- /crates/wick/wick-host/examples/basic-host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/examples/basic-host.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/manifests/logger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/manifests/logger.yaml -------------------------------------------------------------------------------- /crates/wick/wick-host/src/app_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/app_host.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/collection.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/component_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/component_host.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/macros.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/traits.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/src/triggers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/src/triggers.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/tests/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/tests/app.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/tests/triggers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/tests/triggers.rs -------------------------------------------------------------------------------- /crates/wick/wick-host/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-host/tests/utils/mod.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "rust-analyzer.cargo.features": ["wick-interface-types/parser"] 3 | } 4 | -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/README.md -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/field.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/parser.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/signatures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/signatures.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/traits.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/src/types.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/tests/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/tests/parser.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/tests/serde.rs -------------------------------------------------------------------------------- /crates/wick/wick-interface-types/types/interface.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-interface-types/types/interface.apex -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-invocation-server/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-invocation-server/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-invocation-server/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/README.md: -------------------------------------------------------------------------------- 1 | # wick-invocation-server 2 | 3 | Wick RPC SDK 4 | 5 | License: BSD-3-Clause 6 | -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-invocation-server/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-invocation-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-invocation-server/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-logger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-logger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/README.md -------------------------------------------------------------------------------- /crates/wick/wick-logger/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-logger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-logger/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/src/logger.rs -------------------------------------------------------------------------------- /crates/wick/wick-logger/src/logger/otel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/src/logger/otel.rs -------------------------------------------------------------------------------- /crates/wick/wick-logger/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-logger/src/options.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/README.md: -------------------------------------------------------------------------------- 1 | # oci-utils 2 | 3 | OCI fetch and utility package 4 | -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/artifacts/darwin-amd64.txt: -------------------------------------------------------------------------------- 1 | darwin-x86_64 -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/artifacts/linux-amd64.txt: -------------------------------------------------------------------------------- 1 | linux-x86_64 -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/artifacts/linux-arm64.txt: -------------------------------------------------------------------------------- 1 | linux-amd64 -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/pull-manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/examples/pull-manifest.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/examples/pull.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/examples/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/examples/push.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/manifest.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/options.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/package.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/package/annotations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/package/annotations.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/package/media_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/package/media_types.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/package/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/package/pull.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/package/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/package/push.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/pull.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/push.rs -------------------------------------------------------------------------------- /crates/wick/wick-oci-utils/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-oci-utils/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-operation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-operation/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-operation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-operation/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-operation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-operation/README.md -------------------------------------------------------------------------------- /crates/wick/wick-operation/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-operation/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-package/.gitignore: -------------------------------------------------------------------------------- 1 | wick_components -------------------------------------------------------------------------------- /crates/wick/wick-package/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-package/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/README.md -------------------------------------------------------------------------------- /crates/wick/wick-package/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-package/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-package/src/package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/src/package.rs -------------------------------------------------------------------------------- /crates/wick/wick-package/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/assets/icon.png -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/assets/static/bla.txt: -------------------------------------------------------------------------------- 1 | asf -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/assets/test.js: -------------------------------------------------------------------------------- 1 | testfile -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/component.yaml -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/http-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/http-types.yaml -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/include.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/include.wick -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/jinja.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/jinja.wick -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/mytypes.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/mytypes.wick -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/test.fake.wasm: -------------------------------------------------------------------------------- 1 | 0xWASM_BUT_NOT_REALLY -------------------------------------------------------------------------------- /crates/wick/wick-package/tests/files/tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-package/tests/files/tests.wick -------------------------------------------------------------------------------- /crates/wick/wick-packet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-packet/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-packet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/README.md -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/b64_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/b64_bytes.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/collection_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/collection_link.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/context.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/datetime.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/entity.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/inherent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/inherent.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/input.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/invocation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/invocation.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/macros.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/metadata.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/output.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/packet.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/packet_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/packet_stream.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/runtime.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/stream_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/stream_map.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/validation.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/vpacket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/vpacket.rs -------------------------------------------------------------------------------- /crates/wick/wick-packet/src/wrapped_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-packet/src/wrapped_type.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-rpc/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/Justfile -------------------------------------------------------------------------------- /crates/wick/wick-rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-rpc/README.md: -------------------------------------------------------------------------------- 1 | # wick-rpc 2 | 3 | Wick RPC SDK 4 | 5 | License: Elastic-2.0 -------------------------------------------------------------------------------- /crates/wick/wick-rpc/codegen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/codegen/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-rpc/codegen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/codegen/src/main.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/proto/wick.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/proto/wick.proto -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/client.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/generated.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/generated/descriptors.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/generated/descriptors.bin -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/generated/wick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/generated/wick.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/types.rs -------------------------------------------------------------------------------- /crates/wick/wick-rpc/src/types/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-rpc/src/types/conversions.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/README.md -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/components.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/components/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/components/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/components/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/components/validation.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/dev.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/dispatch.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/runtime.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/runtime/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/runtime/scope.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/runtime/scope/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/runtime/scope/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/runtime/scope/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/runtime/scope/init.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/runtime/scope/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/runtime/scope/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/test.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/errors.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/manifests/v0/echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/manifests/v0/echo.yaml -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/utils/mod.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/v0_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/v0_components.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/v1_components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/v1_components.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/validation.rs -------------------------------------------------------------------------------- /crates/wick/wick-runtime/tests/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-runtime/tests/wasm.rs -------------------------------------------------------------------------------- /crates/wick/wick-settings/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-settings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/README.md -------------------------------------------------------------------------------- /crates/wick/wick-settings/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-settings/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-settings/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-settings/src/settings.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/README.md -------------------------------------------------------------------------------- /crates/wick/wick-test/src/assertion_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/assertion_packet.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/operators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/operators.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/operators/contains.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/operators/contains.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/operators/order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/operators/order.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/operators/regex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/operators/regex.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/runner.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/test_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/test_group.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/test_suite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/test_suite.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/unit_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/unit_test.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/src/utils.rs -------------------------------------------------------------------------------- /crates/wick/wick-test/tests/done_tolerance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-test/tests/done_tolerance.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/README.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/src/cli.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-cli/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-cli/src/test.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/README.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/http.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/http/conversions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/http/conversions.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/http/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/http/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/http/routers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/http/routers.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-http/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-http/src/test.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/README.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/src/test.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/src/time.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-time/src/time/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-time/src/time/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/README.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger-wasm-command/src/state.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger-wasm-command/wit/worlds.wit: -------------------------------------------------------------------------------- 1 | package candle:wick 2 | 3 | world command-trigger { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /crates/wick/wick-trigger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-trigger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/LICENSE -------------------------------------------------------------------------------- /crates/wick/wick-trigger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/README.md -------------------------------------------------------------------------------- /crates/wick/wick-trigger/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger/src/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/src/resources.rs -------------------------------------------------------------------------------- /crates/wick/wick-trigger/src/trigger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-trigger/src/trigger.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-wascap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-wascap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/README.md -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/claims.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/claims.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/claims/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/claims/validate.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/component.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/parser.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/v0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/v0.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/src/v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/src/v1.rs -------------------------------------------------------------------------------- /crates/wick/wick-wascap/test/1.v0.signed.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/test/1.v0.signed.wasm -------------------------------------------------------------------------------- /crates/wick/wick-wascap/test/2.v0.signed.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/test/2.v0.signed.wasm -------------------------------------------------------------------------------- /crates/wick/wick-wascap/test/3.v0.signed.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/test/3.v0.signed.wasm -------------------------------------------------------------------------------- /crates/wick/wick-wascap/test/4.v0.signed.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wascap/test/4.v0.signed.wasm -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/README.md -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/src/engine.rs -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/src/lib.rs -------------------------------------------------------------------------------- /crates/wick/wick-wasm-engine/src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-wasm-engine/src/store.rs -------------------------------------------------------------------------------- /crates/wick/wick-xdg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/CHANGELOG.md -------------------------------------------------------------------------------- /crates/wick/wick-xdg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/Cargo.toml -------------------------------------------------------------------------------- /crates/wick/wick-xdg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/README.md -------------------------------------------------------------------------------- /crates/wick/wick-xdg/src/directories.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/src/directories.rs -------------------------------------------------------------------------------- /crates/wick/wick-xdg/src/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/src/directory.rs -------------------------------------------------------------------------------- /crates/wick/wick-xdg/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/src/error.rs -------------------------------------------------------------------------------- /crates/wick/wick-xdg/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/src/file.rs -------------------------------------------------------------------------------- /crates/wick/wick-xdg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/crates/wick/wick-xdg/src/lib.rs -------------------------------------------------------------------------------- /docker/Dockerfile.latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docker/Dockerfile.latest -------------------------------------------------------------------------------- /docker/Dockerfile.nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docker/Dockerfile.nightly -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | .hugo_build.lock -------------------------------------------------------------------------------- /docs/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/archetypes/default.md -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/wick/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/_index.md -------------------------------------------------------------------------------- /docs/content/wick/configuration/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Configuration 3 | weight: 10 4 | --- 5 | -------------------------------------------------------------------------------- /docs/content/wick/configuration/reference/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Reference 3 | weight: 1 4 | --- 5 | -------------------------------------------------------------------------------- /docs/content/wick/configuration/reference/v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/configuration/reference/v0.md -------------------------------------------------------------------------------- /docs/content/wick/configuration/reference/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/configuration/reference/v1.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/_index.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/database.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/installation.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/package.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/rest-api.md -------------------------------------------------------------------------------- /docs/content/wick/getting-started/webassembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/getting-started/webassembly.md -------------------------------------------------------------------------------- /docs/content/wick/introduction/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/introduction/_index.md -------------------------------------------------------------------------------- /docs/content/wick/introduction/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/introduction/concepts.md -------------------------------------------------------------------------------- /docs/content/wick/introduction/streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/introduction/streaming.md -------------------------------------------------------------------------------- /docs/content/wick/reference/SDKs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SDKs 3 | weight: 2 4 | --- 5 | -------------------------------------------------------------------------------- /docs/content/wick/reference/SDKs/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/SDKs/browser.md -------------------------------------------------------------------------------- /docs/content/wick/reference/SDKs/nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/SDKs/nodejs.md -------------------------------------------------------------------------------- /docs/content/wick/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/_index.md -------------------------------------------------------------------------------- /docs/content/wick/reference/components/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Other Components 3 | weight: 1 4 | --- 5 | -------------------------------------------------------------------------------- /docs/content/wick/reference/components/composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/components/composite.md -------------------------------------------------------------------------------- /docs/content/wick/reference/components/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/components/sql.md -------------------------------------------------------------------------------- /docs/content/wick/reference/triggers/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Application Triggers 3 | weight: 2 4 | --- 5 | -------------------------------------------------------------------------------- /docs/content/wick/reference/triggers/cli/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/triggers/cli/_index.md -------------------------------------------------------------------------------- /docs/content/wick/reference/triggers/http/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/triggers/http/_index.md -------------------------------------------------------------------------------- /docs/content/wick/reference/triggers/time/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/content/wick/reference/triggers/time/_index.md -------------------------------------------------------------------------------- /docs/data/examples: -------------------------------------------------------------------------------- 1 | ../../examples/ -------------------------------------------------------------------------------- /docs/docs.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/docs.wick -------------------------------------------------------------------------------- /docs/hugo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/hugo.toml -------------------------------------------------------------------------------- /docs/layouts/partials/configuration-reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/partials/configuration-reference.html -------------------------------------------------------------------------------- /docs/layouts/partials/site-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/partials/site-header.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/app_config_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/app_config_footer.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/app_config_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/app_config_header.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/excerpt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/excerpt.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/metadata.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/oplist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/oplist.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Inner}} 3 | -------------------------------------------------------------------------------- /docs/layouts/shortcodes/router_config_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/router_config_header.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/v1ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/v1ref.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/layouts/shortcodes/value.html -------------------------------------------------------------------------------- /docs/static/component-loader/_app/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1699021511018"} -------------------------------------------------------------------------------- /docs/static/component-loader/candle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/component-loader/candle-icon.svg -------------------------------------------------------------------------------- /docs/static/component-loader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/component-loader/index.html -------------------------------------------------------------------------------- /docs/static/component-loader/wick_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/component-loader/wick_logo.png -------------------------------------------------------------------------------- /docs/static/debug.js: -------------------------------------------------------------------------------- 1 | export default function () {} 2 | -------------------------------------------------------------------------------- /docs/static/images/candle-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/candle-icon.png -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-config-audit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-config-audit.gif -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-config-lockdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-config-lockdown.gif -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-invoke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-invoke.gif -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-list.gif -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-new-component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-new-component.gif -------------------------------------------------------------------------------- /docs/static/images/gifs/wick-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/static/images/gifs/wick-test.gif -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/.editorconfig -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: thingsym 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/LICENSE.md -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/README.md -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/docker-compose.yml -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/gulpfile.js -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/images/tn.png -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/layouts/404.html -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/blog/li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/layouts/blog/li.html -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/layouts/index.html -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/partials/content-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/partials/custom-head.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/partials/meta/chroma.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/partials/notification.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/layouts/partials/sidebar-footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/package-lock.json -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/package.json -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/src/js/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/src/js/code.js -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/src/js/headerlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/src/js/headerlink.js -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/src/js/main.js -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/src/scss/chroma.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/src/scss/chroma.scss -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/src/scss/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/src/scss/theme.scss -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/static/css/theme.css -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/static/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/static/js/bundle.js -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/theme.toml -------------------------------------------------------------------------------- /docs/themes/hugo-theme-techdoc/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/docs/themes/hugo-theme-techdoc/webpack.config.js -------------------------------------------------------------------------------- /etc/commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/commitlint.config.js -------------------------------------------------------------------------------- /etc/deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/deny.toml -------------------------------------------------------------------------------- /etc/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/docker-compose.yml -------------------------------------------------------------------------------- /etc/integration/httpbin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/httpbin.sh -------------------------------------------------------------------------------- /etc/integration/mssql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/mssql.sh -------------------------------------------------------------------------------- /etc/integration/postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/postgres.sh -------------------------------------------------------------------------------- /etc/integration/registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/registry.sh -------------------------------------------------------------------------------- /etc/integration/sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/sqlite.sh -------------------------------------------------------------------------------- /etc/integration/sqlite/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/sqlite/init.sql -------------------------------------------------------------------------------- /etc/integration/sqlite/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/sqlite/schema.sql -------------------------------------------------------------------------------- /etc/integration/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/integration/utils.sh -------------------------------------------------------------------------------- /etc/lints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/lints.rs -------------------------------------------------------------------------------- /etc/udeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/udeps.sh -------------------------------------------------------------------------------- /etc/update-lints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/etc/update-lints.ts -------------------------------------------------------------------------------- /examples/cli/wasm-calling-postgres.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-calling-postgres.wick -------------------------------------------------------------------------------- /examples/cli/wasm-cli/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /examples/cli/wasm-cli/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/.vscode/settings.json -------------------------------------------------------------------------------- /examples/cli/wasm-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/Cargo.toml -------------------------------------------------------------------------------- /examples/cli/wasm-cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/build.rs -------------------------------------------------------------------------------- /examples/cli/wasm-cli/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/component.wick -------------------------------------------------------------------------------- /examples/cli/wasm-cli/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/justfile -------------------------------------------------------------------------------- /examples/cli/wasm-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-cli/src/lib.rs -------------------------------------------------------------------------------- /examples/cli/wasm-command-component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-command-component.wick -------------------------------------------------------------------------------- /examples/cli/wasm-component-calls.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/cli/wasm-component-calls.wick -------------------------------------------------------------------------------- /examples/component-model/adapters/command/wasi_snapshot_preview1.wasm: -------------------------------------------------------------------------------- 1 | wasi_snapshot_preview1.command-v13.0.0.wasm -------------------------------------------------------------------------------- /examples/component-model/adapters/reactor/wasi_snapshot_preview1.wasm: -------------------------------------------------------------------------------- 1 | wasi_snapshot_preview1.reactor-v13.0.0.wasm -------------------------------------------------------------------------------- /examples/component-model/wasi-command/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/component-model/wasi-command/Cargo.toml -------------------------------------------------------------------------------- /examples/component-model/wasi-command/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/component-model/wasi-command/Justfile -------------------------------------------------------------------------------- /examples/component-model/wasi-command/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/component-model/wasi-command/src/main.rs -------------------------------------------------------------------------------- /examples/components/cli-trigger/.cargo/config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/cli-trigger/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /examples/components/cli-trigger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/Cargo.toml -------------------------------------------------------------------------------- /examples/components/cli-trigger/app.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/app.wick -------------------------------------------------------------------------------- /examples/components/cli-trigger/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/build.rs -------------------------------------------------------------------------------- /examples/components/cli-trigger/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/component.wick -------------------------------------------------------------------------------- /examples/components/cli-trigger/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/justfile -------------------------------------------------------------------------------- /examples/components/cli-trigger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/cli-trigger/src/lib.rs -------------------------------------------------------------------------------- /examples/components/composite-db-import.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/composite-db-import.wick -------------------------------------------------------------------------------- /examples/components/composite-imports.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/composite-imports.wick -------------------------------------------------------------------------------- /examples/components/composite-provides.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/composite-provides.wick -------------------------------------------------------------------------------- /examples/components/composite-requires.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/composite-requires.wick -------------------------------------------------------------------------------- /examples/components/config-generator/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /examples/components/config-generator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/config-generator/Cargo.toml -------------------------------------------------------------------------------- /examples/components/config-generator/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/config-generator/build.rs -------------------------------------------------------------------------------- /examples/components/config-generator/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/config-generator/component.wick -------------------------------------------------------------------------------- /examples/components/config-generator/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/config-generator/justfile -------------------------------------------------------------------------------- /examples/components/config-generator/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/config-generator/src/lib.rs -------------------------------------------------------------------------------- /examples/components/echo.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/echo.wick -------------------------------------------------------------------------------- /examples/components/hello-world.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/hello-world.wick -------------------------------------------------------------------------------- /examples/components/http-client-with-config.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/http-client-with-config.wick -------------------------------------------------------------------------------- /examples/components/http-client.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/http-client.wick -------------------------------------------------------------------------------- /examples/components/tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/tests.wick -------------------------------------------------------------------------------- /examples/components/wasi-fs/.cargo/config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/components/wasi-fs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/.gitignore -------------------------------------------------------------------------------- /examples/components/wasi-fs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/.vscode/settings.json -------------------------------------------------------------------------------- /examples/components/wasi-fs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/Cargo.toml -------------------------------------------------------------------------------- /examples/components/wasi-fs/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/build.rs -------------------------------------------------------------------------------- /examples/components/wasi-fs/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/component.wick -------------------------------------------------------------------------------- /examples/components/wasi-fs/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/justfile -------------------------------------------------------------------------------- /examples/components/wasi-fs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/components/wasi-fs/src/lib.rs -------------------------------------------------------------------------------- /examples/components/wasi-fs/tests/testdata/file.txt: -------------------------------------------------------------------------------- 1 | # Hello World! -------------------------------------------------------------------------------- /examples/db/azuresql-component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/azuresql-component.wick -------------------------------------------------------------------------------- /examples/db/postgres-component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/postgres-component.wick -------------------------------------------------------------------------------- /examples/db/sqlite-component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/sqlite-component.wick -------------------------------------------------------------------------------- /examples/db/sqlite-inmemory-component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/sqlite-inmemory-component.wick -------------------------------------------------------------------------------- /examples/db/tests/postgres-date-tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/tests/postgres-date-tests.wick -------------------------------------------------------------------------------- /examples/db/tests/postgres-null-tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/tests/postgres-null-tests.wick -------------------------------------------------------------------------------- /examples/db/tests/postgres-numeric-tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/db/tests/postgres-numeric-tests.wick -------------------------------------------------------------------------------- /examples/http/http-client.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/http-client.wick -------------------------------------------------------------------------------- /examples/http/middleware.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware.wick -------------------------------------------------------------------------------- /examples/http/middleware/redirect.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/redirect.wick -------------------------------------------------------------------------------- /examples/http/middleware/request/.cargo/config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/http/middleware/request/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /examples/http/middleware/request/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/request/Cargo.toml -------------------------------------------------------------------------------- /examples/http/middleware/request/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/request/build.rs -------------------------------------------------------------------------------- /examples/http/middleware/request/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/request/component.wick -------------------------------------------------------------------------------- /examples/http/middleware/request/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/request/justfile -------------------------------------------------------------------------------- /examples/http/middleware/request/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/middleware/request/src/lib.rs -------------------------------------------------------------------------------- /examples/http/proxy-router.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/proxy-router.wick -------------------------------------------------------------------------------- /examples/http/raw-router.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/raw-router.wick -------------------------------------------------------------------------------- /examples/http/rest-router.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/rest-router.wick -------------------------------------------------------------------------------- /examples/http/rest-router/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/rest-router/component.wick -------------------------------------------------------------------------------- /examples/http/staticfile-router.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/staticfile-router.wick -------------------------------------------------------------------------------- /examples/http/wasm-http-call/client.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/wasm-http-call/client.wick -------------------------------------------------------------------------------- /examples/http/wasm-http-call/harness.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/http/wasm-http-call/harness.wick -------------------------------------------------------------------------------- /examples/http/wasm-http-call/wasm-component/.cargo/config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/http/wasm-http-call/wasm-component/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /examples/misc/multi-trigger.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/misc/multi-trigger.wick -------------------------------------------------------------------------------- /examples/time/time.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/time/time.wick -------------------------------------------------------------------------------- /examples/typescript-config/sqlite-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/examples/typescript-config/sqlite-component.ts -------------------------------------------------------------------------------- /installer/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/installer/setup.ps1 -------------------------------------------------------------------------------- /installer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/installer/setup.sh -------------------------------------------------------------------------------- /integration-tests/cli-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/cli-tests/Cargo.toml -------------------------------------------------------------------------------- /integration-tests/cli-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/cli-tests/src/lib.rs -------------------------------------------------------------------------------- /integration-tests/codegen-bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/codegen-bin/Cargo.toml -------------------------------------------------------------------------------- /integration-tests/codegen-bin/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/codegen-bin/src/main.rs -------------------------------------------------------------------------------- /integration-tests/codegen-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/codegen-tests/Cargo.toml -------------------------------------------------------------------------------- /integration-tests/codegen-tests/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/codegen-tests/Justfile -------------------------------------------------------------------------------- /integration-tests/codegen-tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/codegen-tests/src/lib.rs -------------------------------------------------------------------------------- /integration-tests/integration/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /integration-tests/integration/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/integration/Cargo.toml -------------------------------------------------------------------------------- /integration-tests/integration/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/integration/src/lib.rs -------------------------------------------------------------------------------- /integration-tests/integration/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/integration/src/test.rs -------------------------------------------------------------------------------- /integration-tests/integration/src/test/wick_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/integration/src/test/wick_test.rs -------------------------------------------------------------------------------- /integration-tests/template/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/template/Cargo.toml -------------------------------------------------------------------------------- /integration-tests/template/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/template/src/lib.rs -------------------------------------------------------------------------------- /integration-tests/testdata/files/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/testdata/files/assets/icon.png -------------------------------------------------------------------------------- /integration-tests/testdata/files/assets/static/bla.txt: -------------------------------------------------------------------------------- 1 | asf -------------------------------------------------------------------------------- /integration-tests/testdata/files/assets/test.fake.wasm: -------------------------------------------------------------------------------- 1 | 0xWASM_BUT_NOT_REALLY -------------------------------------------------------------------------------- /integration-tests/testdata/files/assets/test.js: -------------------------------------------------------------------------------- 1 | testfile -------------------------------------------------------------------------------- /integration-tests/testdata/files/component.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/testdata/files/component.yaml -------------------------------------------------------------------------------- /integration-tests/testdata/files/http-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/testdata/files/http-types.yaml -------------------------------------------------------------------------------- /integration-tests/testdata/files/jinja.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/testdata/files/jinja.wick -------------------------------------------------------------------------------- /integration-tests/testdata/files/tests.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/integration-tests/testdata/files/tests.wick -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands.rs -------------------------------------------------------------------------------- /src/commands/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/config.rs -------------------------------------------------------------------------------- /src/commands/config/audit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/config/audit.rs -------------------------------------------------------------------------------- /src/commands/config/dot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/config/dot.rs -------------------------------------------------------------------------------- /src/commands/config/expand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/config/expand.rs -------------------------------------------------------------------------------- /src/commands/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/install.rs -------------------------------------------------------------------------------- /src/commands/invoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/invoke.rs -------------------------------------------------------------------------------- /src/commands/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/key.rs -------------------------------------------------------------------------------- /src/commands/key/gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/key/gen.rs -------------------------------------------------------------------------------- /src/commands/key/get.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/key/get.rs -------------------------------------------------------------------------------- /src/commands/key/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/key/list.rs -------------------------------------------------------------------------------- /src/commands/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/list.rs -------------------------------------------------------------------------------- /src/commands/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new.rs -------------------------------------------------------------------------------- /src/commands/new/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/app.rs -------------------------------------------------------------------------------- /src/commands/new/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/component.rs -------------------------------------------------------------------------------- /src/commands/new/component/composite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/component/composite.rs -------------------------------------------------------------------------------- /src/commands/new/component/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/component/http.rs -------------------------------------------------------------------------------- /src/commands/new/component/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/component/sql.rs -------------------------------------------------------------------------------- /src/commands/new/component/wasmrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/new/component/wasmrs.rs -------------------------------------------------------------------------------- /src/commands/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/query.rs -------------------------------------------------------------------------------- /src/commands/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/registry.rs -------------------------------------------------------------------------------- /src/commands/registry/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/registry/login.rs -------------------------------------------------------------------------------- /src/commands/registry/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/registry/manifest.rs -------------------------------------------------------------------------------- /src/commands/registry/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/registry/pull.rs -------------------------------------------------------------------------------- /src/commands/registry/push.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/registry/push.rs -------------------------------------------------------------------------------- /src/commands/rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/rpc.rs -------------------------------------------------------------------------------- /src/commands/rpc/invoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/rpc/invoke.rs -------------------------------------------------------------------------------- /src/commands/rpc/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/rpc/list.rs -------------------------------------------------------------------------------- /src/commands/rpc/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/rpc/stats.rs -------------------------------------------------------------------------------- /src/commands/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/run.rs -------------------------------------------------------------------------------- /src/commands/serve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/serve.rs -------------------------------------------------------------------------------- /src/commands/show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/show.rs -------------------------------------------------------------------------------- /src/commands/show/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/show/env.rs -------------------------------------------------------------------------------- /src/commands/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/test.rs -------------------------------------------------------------------------------- /src/commands/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/wasm.rs -------------------------------------------------------------------------------- /src/commands/wasm/inspect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/wasm/inspect.rs -------------------------------------------------------------------------------- /src/commands/wasm/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/commands/wasm/sign.rs -------------------------------------------------------------------------------- /src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/io.rs -------------------------------------------------------------------------------- /src/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/keys.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/oci.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/oci.rs -------------------------------------------------------------------------------- /src/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/options.rs -------------------------------------------------------------------------------- /src/options/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/options/component.rs -------------------------------------------------------------------------------- /src/options/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/options/logging.rs -------------------------------------------------------------------------------- /src/options/oci.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/options/oci.rs -------------------------------------------------------------------------------- /src/panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/panic.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/wasm.rs -------------------------------------------------------------------------------- /src/wick_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/src/wick_host.rs -------------------------------------------------------------------------------- /templates/rust/.cargo/config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /build 3 | -------------------------------------------------------------------------------- /templates/rust/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/.vscode/settings.json -------------------------------------------------------------------------------- /templates/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/Cargo.toml -------------------------------------------------------------------------------- /templates/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/build.rs -------------------------------------------------------------------------------- /templates/rust/component.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/component.wick -------------------------------------------------------------------------------- /templates/rust/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/justfile -------------------------------------------------------------------------------- /templates/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/templates/rust/src/lib.rs -------------------------------------------------------------------------------- /tests/invoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke.rs -------------------------------------------------------------------------------- /tests/invoke/integration/registry.toml.flakey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/integration/registry.toml.flakey -------------------------------------------------------------------------------- /tests/invoke/unit/app-cli.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/app-cli.wick -------------------------------------------------------------------------------- /tests/invoke/unit/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/app.toml -------------------------------------------------------------------------------- /tests/invoke/unit/app.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/app.wick -------------------------------------------------------------------------------- /tests/invoke/unit/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/log.yaml -------------------------------------------------------------------------------- /tests/invoke/unit/stdin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/stdin.toml -------------------------------------------------------------------------------- /tests/invoke/unit/v1-wasmrs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/invoke/unit/v1-wasmrs.toml -------------------------------------------------------------------------------- /tests/new.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new.rs -------------------------------------------------------------------------------- /tests/new/unit/app-cli.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/app-cli.toml -------------------------------------------------------------------------------- /tests/new/unit/app-http.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/app-http.toml -------------------------------------------------------------------------------- /tests/new/unit/app-time.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/app-time.toml -------------------------------------------------------------------------------- /tests/new/unit/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/app.toml -------------------------------------------------------------------------------- /tests/new/unit/component-composite.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/component-composite.toml -------------------------------------------------------------------------------- /tests/new/unit/component-http.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/component-http.toml -------------------------------------------------------------------------------- /tests/new/unit/component-sql.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/component-sql.toml -------------------------------------------------------------------------------- /tests/new/unit/component-wasm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/new/unit/component-wasm.toml -------------------------------------------------------------------------------- /tests/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/query.rs -------------------------------------------------------------------------------- /tests/query/unit/jq-style.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/query/unit/jq-style.toml -------------------------------------------------------------------------------- /tests/query/unit/no-curlies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/query/unit/no-curlies.toml -------------------------------------------------------------------------------- /tests/query/unit/with-curlies.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/query/unit/with-curlies.toml -------------------------------------------------------------------------------- /tests/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run.rs -------------------------------------------------------------------------------- /tests/run/integration/postgres.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/integration/postgres.toml -------------------------------------------------------------------------------- /tests/run/unit/anonymous-component.args.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/anonymous-component.args.wick -------------------------------------------------------------------------------- /tests/run/unit/anonymous-component.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/anonymous-component.toml -------------------------------------------------------------------------------- /tests/run/unit/file-reader-cli.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/file-reader-cli.wick -------------------------------------------------------------------------------- /tests/run/unit/file-reader-lockdown-fail.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/file-reader-lockdown-fail.toml -------------------------------------------------------------------------------- /tests/run/unit/file-reader-lockdown-pass.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/file-reader-lockdown-pass.toml -------------------------------------------------------------------------------- /tests/run/unit/file-reader.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/file-reader.toml -------------------------------------------------------------------------------- /tests/run/unit/file-reader.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/file-reader.wick -------------------------------------------------------------------------------- /tests/run/unit/imported-component.args.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/imported-component.args.wick -------------------------------------------------------------------------------- /tests/run/unit/imported-component.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/imported-component.toml -------------------------------------------------------------------------------- /tests/run/unit/lockdown-fail.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/lockdown-fail.wick -------------------------------------------------------------------------------- /tests/run/unit/lockdown-pass-wildcard-dir.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/lockdown-pass-wildcard-dir.wick -------------------------------------------------------------------------------- /tests/run/unit/lockdown-pass.wick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/lockdown-pass.wick -------------------------------------------------------------------------------- /tests/run/unit/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/noop.yaml -------------------------------------------------------------------------------- /tests/run/unit/stdin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/stdin.toml -------------------------------------------------------------------------------- /tests/run/unit/wasm-command-component.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/run/unit/wasm-command-component.toml -------------------------------------------------------------------------------- /tests/serve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/serve.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/test.rs -------------------------------------------------------------------------------- /tests/test/unit/wasm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/test/unit/wasm.toml -------------------------------------------------------------------------------- /tests/testfile.md: -------------------------------------------------------------------------------- 1 | # Hello world! -------------------------------------------------------------------------------- /tests/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tests/utils/mod.rs -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.eslintrc.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.gitignore -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.vscode/extensions.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.vscode/launch.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.vscode/settings.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.vscode/tasks.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/.vscodeignore -------------------------------------------------------------------------------- /tools/wick-vscode-extension/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/CHANGELOG.md -------------------------------------------------------------------------------- /tools/wick-vscode-extension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/LICENSE -------------------------------------------------------------------------------- /tools/wick-vscode-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/README.md -------------------------------------------------------------------------------- /tools/wick-vscode-extension/icons/wick-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/icons/wick-icon-128.png -------------------------------------------------------------------------------- /tools/wick-vscode-extension/icons/wick-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/icons/wick-icon-32.png -------------------------------------------------------------------------------- /tools/wick-vscode-extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/package-lock.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/package.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/src/extension.ts -------------------------------------------------------------------------------- /tools/wick-vscode-extension/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/src/test/runTest.ts -------------------------------------------------------------------------------- /tools/wick-vscode-extension/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/src/test/suite/index.ts -------------------------------------------------------------------------------- /tools/wick-vscode-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/tsconfig.json -------------------------------------------------------------------------------- /tools/wick-vscode-extension/wick-icon-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/candlecorp/wick/HEAD/tools/wick-vscode-extension/wick-icon-theme.json -------------------------------------------------------------------------------- /wit/worlds.wit: -------------------------------------------------------------------------------- 1 | package candle:wick 2 | 3 | world command-trigger { 4 | } 5 | 6 | --------------------------------------------------------------------------------