swamp_script_core/
prelude.rs

1/*
2 * Copyright (c) Peter Bjorklund. All rights reserved. https://github.com/swamp/script
3 * Licensed under the MIT License. See LICENSE in the project root for license information.
4 */
5pub use {
6    crate::cnv::{overwrite_struct, overwrite_value},
7    crate::export::SwampExport,
8    crate::qck_des::quick_deserialize,
9    crate::typereg::TypeRegistry,
10    crate::value::{QuickSerialize, SourceMapLookup, Value, ValueError, ValueRef},
11    seq_map::SeqMap,
12};