docs.rs failed to build beet_net-0.0.9-rc.1
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:
beet_net-0.0.7
beet_net
Very bevy networking utilities.
This crate provides cross-platform networking and communication primitives for bevy applications.
Modules
- client: HTTP client for sending requests (ureq, reqwest and WASM backends)
- exchange: Request/response exchange patterns for Bevy entities
- object_storage: Bucket-based storage abstraction (filesystem, S3, etc.)
- server: HTTP server implementations
- sockets: WebSocket client and server
Example
use *;
use *;
// Create a simple server with a handler
new
.add_plugins
.add_systems
.run;
Features
| Feature | Description |
|---|---|
server |
HTTP server functionality |
lambda |
AWS Lambda server support |
aws |
AWS S3 and DynamoDB providers |
flow |
beet_flow integration for exchange patterns |
reqwest |
Use reqwest as the HTTP client backend |
ureq |
Use ureq as the HTTP client backend |
tungstenite |
Native WebSocket support |
rustls-tls |
Use rustls for TLS |
native-tls |
Use native TLS implementation |