mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-02 10:37:03 -04:00
1.2 KiB
1.2 KiB
The Veilid Framework
This is the core library used to create a Veilid node and operate it as part of an application.
veilid-core
contains all of the core logic for Veilid and can be used in mobile applications as well as desktop
and in-browser WebAssembly apps.
Getting started
The public API is accessed by getting a [VeilidAPI] object via a call to [api_startup], [api_startup_json], or [api_startup_config].
From there, a [RoutingContext] object can get you access to public and private routed operations.
Cargo features
The default veilid-core
configurations are:
default
- Usestokio
as the async runtime.
If you use --no-default-features
, you can switch to other runtimes:
default-async-std
- Usesasync-std
as the async runtime.default-wasm
- When building for thewasm32
architecture, use this to enablewasm-bindgen-futures
as the async runtime.