wast-encoder 0.1.0

WAST encoder supporting wasi and wit components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::{
    fmt::{Debug, Display, Formatter},
    str::FromStr,
    sync::Arc,
};

use convert_case::{Case, Casing};
use nyar_error::SyntaxError;

use crate::encode_id;

pub mod identifiers;
pub mod wasi_publisher;