neomind-extension-sdk 0.6.3

Unified SDK for developing NeoMind Edge AI Platform extensions with ABI Version 3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! WASM-specific type definitions
//!
//! These types are used when compiling for WASM target and don't have
//! access to the full neomind-core crate.

use serde::{Deserialize, Serialize};

// Re-export types from extension.rs
pub use crate::extension::*;

/// ABI version for WASM extensions
pub const ABI_VERSION: u32 = 3;