pub use wasmcloud_core::CallTargetInterface;
#[allow(clippy::doc_markdown)]
#[allow(missing_docs)]
mod wasmtime_bindings {
mod keyvalue {
pub type Bucket = std::sync::Arc<str>;
}
mod blobstore {
pub type Container = std::sync::Arc<str>;
pub type IncomingValue = crate::component::blobstore::IncomingValue;
pub type OutgoingValue = crate::component::blobstore::OutgoingValue;
pub type StreamObjectNames = crate::component::blobstore::StreamObjectNames;
}
mod lattice {
pub type CallTargetInterface = std::sync::Arc<wasmcloud_core::CallTargetInterface>;
}
mod secrets {
use super::wasmcloud::secrets::store::SecretValue;
pub type Secret = std::sync::Arc<String>;
impl secrecy::Zeroize for SecretValue {
fn zeroize(&mut self) {
match self {
SecretValue::String(s) => s.zeroize(),
SecretValue::Bytes(b) => b.zeroize(),
}
}
}
impl secrecy::CloneableSecret for SecretValue {}
impl secrecy::DebugSecret for SecretValue {}
}
wasmtime::component::bindgen!({
world: "interfaces",
async: true,
tracing: true,
trappable_imports: true,
with: {
"wasi:blobstore/container/container": blobstore::Container,
"wasi:blobstore/container/stream-object-names": blobstore::StreamObjectNames,
"wasi:blobstore/types/incoming-value": blobstore::IncomingValue,
"wasi:blobstore/types/outgoing-value": blobstore::OutgoingValue,
"wasi:io": wasmtime_wasi::bindings::io,
"wasi:keyvalue/store/bucket": keyvalue::Bucket,
"wasmcloud:bus/lattice/call-target-interface": lattice::CallTargetInterface,
"wasmcloud:secrets/store/secret": secrets::Secret,
},
});
}
#[allow(missing_docs)]
mod unversioned_logging_bindings {
wasmtime::component::bindgen!({
world: "unversioned-interfaces",
async: true,
tracing: true,
trappable_imports: true,
});
}
#[allow(missing_docs)]
mod config_legacy {
wasmtime::component::bindgen!({
path: "wit/config-legacy",
world: "wasi:config/imports@0.2.0-draft",
async: true,
tracing: true,
trappable_imports: true,
});
}
#[allow(clippy::doc_markdown)]
#[allow(missing_docs)]
pub mod wrpc {
wit_bindgen_wrpc::generate!({
world: "wrpc-interfaces",
with: {
"wasi:blobstore/types@0.2.0-draft": wrpc_interface_blobstore::bindings::wasi::blobstore::types,
"wrpc:blobstore/types@0.1.0": wrpc_interface_blobstore::bindings::wrpc::blobstore::types,
},
generate_all,
});
}
pub mod config {
pub use super::config_legacy::wasi::config::runtime;
pub use super::wasmtime_bindings::wasi::config::store;
}
pub use unversioned_logging_bindings::wasi::logging as unversioned_logging;
pub use wasmtime_bindings::wasi::{blobstore, keyvalue, logging0_1_0_draft as logging};
pub use wasmtime_bindings::wasmcloud::{bus1_0_0, bus2_0_0 as bus, messaging, secrets};
pub use wasmtime_bindings::Interfaces;
pub use wasmtime_wasi_http::bindings::http;