wat_service

Crates.iowat_service
lib.rswat_service
version0.5.1
created_at2024-11-30 04:18:06.358891+00
updated_at2025-06-23 03:55:07.999152+00
descriptionWebAssembly Text Format language service.
homepage
repositoryhttps://github.com/g-plane/wasm-language-tools
max_upload_size
id1466291
size644,282
Pig Fang (g-plane)

documentation

README

The language service of WebAssembly Language Tools. This is the core functionality behind the language server.

The language service does nothing about IO, which means it doesn't read source files. Actually, it doesn't even require the source code to be a file on disk.

Besides, the language service doesn't communicate with language clients and process Language Server Protocol messages (by JSON-RPC). When using the language service, you need to handle JSON-RPC communication and server loop by yourself, and call corresponding methods of the language service when receiving requests then send responses back to the client. You're free to use lsp-server or tower-lsp with the language service, or do it completely by yourself as you like.

Commit count: 735

cargo fmt