co-js 0.1.0

COKIT primitives for the browser using WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: AGPL-3.0-only
// Copyright (C) 2026 1io BRANDGUARDIAN GmbH

mod actor;
mod block_storage;
mod dynamic_value;
mod js;
mod list;
mod map;
mod set;
mod unixfs;

pub use block_storage::{JsBlockStorage, JsBlockStorageGet, JsBlockStorageSet};
pub use js::{from_js_value, to_js_value};
pub use map::JsCoMap;
pub use unixfs::js_unixfs_add;