#web-server #web-api #agent #ceylon #config

ceylon-server

HTTP API server library for Ceylon agents

2 releases

new 0.1.1 Dec 30, 2025
0.1.0 Dec 29, 2025

#2405 in HTTP server


Used in ceylon-cli

MIT license

28KB
532 lines

Ceylon Server - HTTP API library for Ceylon agents

This library provides an HTTP API server for Ceylon agents. Use it from the CLI or embed it in your own application.

Example

use ceylon_runtime::config::MeshConfig;
use ceylon_server::run_server;

#[tokio::main]
async fn main() {
    let config = MeshConfig::from_file("agents.toml").unwrap();
    run_server(config, 3000, None).await;
}

Dependencies

~23–43MB
~571K SLoC