sema-core 1.13.0

Core types and environment for the Sema programming language
Documentation
#![allow(clippy::mutable_key_type)]
pub mod context;
pub mod error;
pub mod home;
pub mod json;
pub mod resolve;
pub mod sandbox;
pub mod value;
pub mod vfs;

pub use context::{
    call_callback, eval_callback, set_call_callback, set_eval_callback, with_stdlib_ctx,
    CallCallbackFn, EvalCallbackFn, EvalContext,
};
pub use error::{CallFrame, SemaError, Span, SpanMap, StackTrace};
pub use home::sema_home;
pub use json::{json_to_value, key_to_string, value_to_json, value_to_json_lossy};
pub use lasso::Spur;
pub use sandbox::{Caps, Sandbox};
pub use value::{
    compare_spurs, intern, interner_stats, next_gensym, pretty_print, resolve, with_resolved,
    Agent, Conversation, Env, ImageAttachment, Lambda, Macro, Message, MultiMethod, NativeFn,
    Prompt, Record, Role, SemaStream, StreamBox, Thunk, ToolDefinition, Value, ValueView,
    NAN_INT_SIGN_BIT, NAN_INT_SMALL_PATTERN, NAN_PAYLOAD_BITS, NAN_PAYLOAD_MASK, NAN_TAG_MASK,
    TAG_NATIVE_FN,
};