docs.rs failed to build astro-run-remote-runner-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
astro-run-remote-runner-0.1.7
Astro Run Remote Runner
astro-run-remote-runner is an extension of astro-run that allows runners to act as remote services and lets astro-run act as a client to connect via gRPC requests. The remote runner streams runtime logs, events, etc. to the client using streams.
Example
Add astro-run and astro-run-remote-runner as dependencies in your Cargo.toml:
[]
= "0.1"
= "0.1"
Remote Runner Server
use ;
use AstroRunRemoteRunnerServer;
// Simulated implementation of a Runner
async
Astro-Run Client
use ;
use AstroRunRemoteRunnerClient;
async
In the above example, you can replace the runner with a specific implementation from astro-runner.