docs.rs failed to build astro-run-server-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-server-0.1.6
Astro Run Server
astro-run-server is an extension of astro-run that allows it to be served as a service and accept runners via gRPC requests.
astro-run-server forwards run requests, plugin events, logs, etc. from astro-run to runners using gRPC streams, enabling remote invocation and multi-runner scheduling.
Example
Add astro-run and astro-run-server as dependencies in your Cargo.toml:
[]
= "0.1"
= "0.1"
Astro Run Server
use ;
use AstroRunServer;
async
Runner
use ;
use AstroRunRunner;
// Simulated implementation of a Runner
async
In the above example, you can replace the runner with a specific implementation from astro-runner.