| Crates.io | theater-server |
| lib.rs | theater-server |
| version | 0.2.1 |
| created_at | 2025-06-23 13:50:54.991676+00 |
| updated_at | 2025-06-24 15:18:19.126025+00 |
| description | HTTP server for Theater actor system management |
| homepage | https://colinrozzi.github.io/theater |
| repository | https://github.com/colinrozzi/theater |
| max_upload_size | |
| id | 1722935 |
| size | 156,418 |
HTTP server component for the Theater WebAssembly actor system.
theater-server provides the HTTP API server for managing Theater actors. It handles:
use theater_server::{ServerConfig, start_server};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let config = ServerConfig::default();
start_server(config).await?;
Ok(())
}
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.