1pub use seq_core::arena;
10pub use seq_core::error;
11pub use seq_core::memory_stats;
12pub use seq_core::seqstring;
13pub use seq_core::son;
14pub use seq_core::stack;
15pub use seq_core::tagged_stack;
16pub use seq_core::value;
17
18pub mod args;
20pub mod arithmetic;
21pub mod bytes_ops;
22pub mod channel;
23pub mod closures;
24pub mod combinators;
25pub mod cond;
26pub mod diagnostics;
27pub mod encoding;
28pub mod exit_code;
29pub mod file;
30pub mod float_ops;
31pub mod io;
32pub mod list_ops;
33pub mod map_ops;
34pub mod os;
35pub mod quotations;
36pub mod report;
37pub mod scheduler;
38pub mod serialize;
39pub mod signal;
40pub mod string_ops;
41pub mod tcp;
42pub mod tcp_test;
43pub mod terminal;
44pub mod test;
45pub mod time_ops;
46pub mod udp;
47pub mod variant_ops;
48pub mod watchdog;
49pub mod weave;
50
51#[cfg(not(feature = "diagnostics"))]
52pub mod report_stub;
53
54#[cfg(feature = "crypto")]
56pub mod crypto;
57#[cfg(not(feature = "crypto"))]
58pub mod crypto_stub;
59
60#[cfg(feature = "http")]
61pub mod http_client;
62#[cfg(not(feature = "http"))]
63pub mod http_stub;
64
65#[cfg(feature = "regex")]
66pub mod regex;
67#[cfg(not(feature = "regex"))]
68pub mod regex_stub;
69
70#[cfg(feature = "compression")]
71pub mod compress;
72#[cfg(not(feature = "compression"))]
73pub mod compress_stub;
74
75pub use seq_core::{ChannelData, MapKey, Value, VariantData, WeaveChannelData, WeaveMessage};
77pub use seq_core::{
78 DISC_BOOL, DISC_CHANNEL, DISC_CLOSURE, DISC_FLOAT, DISC_INT, DISC_MAP, DISC_QUOTATION,
79 DISC_STRING, DISC_SYMBOL, DISC_VARIANT, DISC_WEAVECTX, Stack, alloc_stack, alloc_test_stack,
80 clone_stack, clone_stack_value, clone_value, drop_op, drop_stack_value, drop_top, dup, nip,
81 over, peek, peek_sv, pick_op, pop, pop_sv, push, push_sv, push_value, roll, rot,
82 set_stack_base, stack_dump, stack_value_to_value, swap, tuck, two_dup, value_to_stack_value,
83};
84
85pub use seq_core::{son_dump, son_dump_pretty};
87
88pub use seq_core::{
90 clear_error, clear_runtime_error, get_error, has_error, has_runtime_error, set_runtime_error,
91 take_error, take_runtime_error,
92};
93
94pub use serialize::{SerializeError, TypedMapKey, TypedValue, ValueSerialize};
96
97pub use arithmetic::{
99 patch_seq_add as add, patch_seq_divide as divide, patch_seq_eq as eq, patch_seq_gt as gt,
100 patch_seq_gte as gte, patch_seq_lt as lt, patch_seq_lte as lte, patch_seq_multiply as multiply,
101 patch_seq_neq as neq, patch_seq_push_bool as push_bool, patch_seq_push_int as push_int,
102 patch_seq_subtract as subtract,
103};
104
105pub use float_ops::{
107 patch_seq_f_add as f_add, patch_seq_f_divide as f_divide, patch_seq_f_eq as f_eq,
108 patch_seq_f_gt as f_gt, patch_seq_f_gte as f_gte, patch_seq_f_lt as f_lt,
109 patch_seq_f_lte as f_lte, patch_seq_f_multiply as f_multiply, patch_seq_f_neq as f_neq,
110 patch_seq_f_subtract as f_subtract, patch_seq_float_to_int as float_to_int,
111 patch_seq_float_to_string as float_to_string, patch_seq_int_to_float as int_to_float,
112 patch_seq_push_float as push_float,
113};
114
115pub use io::{
117 patch_seq_exit_op as exit_op, patch_seq_push_interned_symbol as push_interned_symbol,
118 patch_seq_push_string as push_string, patch_seq_push_string_bytes as push_string_bytes,
119 patch_seq_push_symbol as push_symbol, patch_seq_read_line as read_line,
120 patch_seq_read_line_plus as read_line_plus, patch_seq_read_n as read_n,
121 patch_seq_string_to_symbol as string_to_symbol, patch_seq_symbol_to_string as symbol_to_string,
122 patch_seq_write_line as write_line,
123};
124
125pub use scheduler::{
127 patch_seq_maybe_yield as maybe_yield, patch_seq_scheduler_init as scheduler_init,
128 patch_seq_scheduler_run as scheduler_run, patch_seq_scheduler_shutdown as scheduler_shutdown,
129 patch_seq_spawn_strand as spawn_strand, patch_seq_strand_spawn as strand_spawn,
130 patch_seq_wait_all_strands as wait_all_strands, patch_seq_yield_strand as yield_strand,
131};
132
133pub use channel::{
136 patch_seq_chan_receive as receive, patch_seq_chan_send as send,
137 patch_seq_close_channel as close_channel, patch_seq_make_channel as make_channel,
138};
139
140pub use weave::{
142 patch_seq_resume as weave_resume, patch_seq_weave as weave_make,
143 patch_seq_weave_cancel as weave_cancel, patch_seq_yield as weave_yield,
144};
145
146pub use io::patch_seq_int_to_string as int_to_string;
148pub use string_ops::{
149 patch_seq_json_escape as json_escape, patch_seq_string_chomp as string_chomp,
150 patch_seq_string_concat as string_concat, patch_seq_string_contains as string_contains,
151 patch_seq_string_empty as string_empty, patch_seq_string_join as string_join,
152 patch_seq_string_length as string_length, patch_seq_string_split as string_split,
153 patch_seq_string_starts_with as string_starts_with, patch_seq_string_to_int as string_to_int,
154 patch_seq_string_to_lower as string_to_lower, patch_seq_string_to_upper as string_to_upper,
155 patch_seq_string_trim as string_trim,
156};
157
158pub use bytes_ops::{
160 patch_seq_float_to_bytes_f32_be as float_to_bytes_f32_be,
161 patch_seq_int_to_bytes_i32_be as int_to_bytes_i32_be,
162};
163
164pub use encoding::{
166 patch_seq_base64_decode as base64_decode, patch_seq_base64_encode as base64_encode,
167 patch_seq_base64url_decode as base64url_decode, patch_seq_base64url_encode as base64url_encode,
168 patch_seq_hex_decode as hex_decode, patch_seq_hex_encode as hex_encode,
169};
170
171#[cfg(feature = "crypto")]
173pub use crypto::{
174 patch_seq_constant_time_eq as constant_time_eq,
175 patch_seq_crypto_aes_gcm_decrypt as crypto_aes_gcm_decrypt,
176 patch_seq_crypto_aes_gcm_encrypt as crypto_aes_gcm_encrypt,
177 patch_seq_crypto_ed25519_keypair as crypto_ed25519_keypair,
178 patch_seq_crypto_ed25519_sign as crypto_ed25519_sign,
179 patch_seq_crypto_ed25519_verify as crypto_ed25519_verify,
180 patch_seq_crypto_pbkdf2_sha256 as crypto_pbkdf2_sha256, patch_seq_hmac_sha256 as hmac_sha256,
181 patch_seq_random_bytes as random_bytes, patch_seq_random_int as random_int,
182 patch_seq_sha256 as sha256, patch_seq_uuid4 as uuid4,
183};
184#[cfg(not(feature = "crypto"))]
185pub use crypto_stub::{
186 patch_seq_constant_time_eq as constant_time_eq,
187 patch_seq_crypto_aes_gcm_decrypt as crypto_aes_gcm_decrypt,
188 patch_seq_crypto_aes_gcm_encrypt as crypto_aes_gcm_encrypt,
189 patch_seq_crypto_ed25519_keypair as crypto_ed25519_keypair,
190 patch_seq_crypto_ed25519_sign as crypto_ed25519_sign,
191 patch_seq_crypto_ed25519_verify as crypto_ed25519_verify,
192 patch_seq_crypto_pbkdf2_sha256 as crypto_pbkdf2_sha256, patch_seq_hmac_sha256 as hmac_sha256,
193 patch_seq_random_bytes as random_bytes, patch_seq_random_int as random_int,
194 patch_seq_sha256 as sha256, patch_seq_uuid4 as uuid4,
195};
196
197#[cfg(feature = "regex")]
199pub use regex::{
200 patch_seq_regex_captures as regex_captures, patch_seq_regex_find as regex_find,
201 patch_seq_regex_find_all as regex_find_all, patch_seq_regex_match as regex_match,
202 patch_seq_regex_replace as regex_replace, patch_seq_regex_replace_all as regex_replace_all,
203 patch_seq_regex_split as regex_split, patch_seq_regex_valid as regex_valid,
204};
205#[cfg(not(feature = "regex"))]
206pub use regex_stub::{
207 patch_seq_regex_captures as regex_captures, patch_seq_regex_find as regex_find,
208 patch_seq_regex_find_all as regex_find_all, patch_seq_regex_match as regex_match,
209 patch_seq_regex_replace as regex_replace, patch_seq_regex_replace_all as regex_replace_all,
210 patch_seq_regex_split as regex_split, patch_seq_regex_valid as regex_valid,
211};
212
213#[cfg(feature = "compression")]
215pub use compress::{
216 patch_seq_compress_gunzip as compress_gunzip, patch_seq_compress_gzip as compress_gzip,
217 patch_seq_compress_gzip_level as compress_gzip_level,
218 patch_seq_compress_unzstd as compress_unzstd, patch_seq_compress_zstd as compress_zstd,
219 patch_seq_compress_zstd_level as compress_zstd_level,
220};
221#[cfg(not(feature = "compression"))]
222pub use compress_stub::{
223 patch_seq_compress_gunzip as compress_gunzip, patch_seq_compress_gzip as compress_gzip,
224 patch_seq_compress_gzip_level as compress_gzip_level,
225 patch_seq_compress_unzstd as compress_unzstd, patch_seq_compress_zstd as compress_zstd,
226 patch_seq_compress_zstd_level as compress_zstd_level,
227};
228
229pub use quotations::{
231 patch_seq_call as call, patch_seq_peek_is_quotation as peek_is_quotation,
232 patch_seq_peek_quotation_fn_ptr as peek_quotation_fn_ptr,
233 patch_seq_push_quotation as push_quotation, patch_seq_spawn as spawn,
234};
235
236pub use closures::{
238 patch_seq_create_env as create_env, patch_seq_env_get as env_get,
239 patch_seq_env_get_int as env_get_int, patch_seq_env_set as env_set,
240 patch_seq_make_closure as make_closure, patch_seq_push_closure as push_closure,
241};
242
243pub use combinators::{bi, dip, if_combinator, keep};
245
246pub use cond::patch_seq_cond as cond;
248
249pub use exit_code::{
251 patch_seq_get_exit_code as get_exit_code, patch_seq_set_exit_code as set_exit_code,
252};
253
254pub use tcp::{
256 patch_seq_tcp_accept as tcp_accept, patch_seq_tcp_close as tcp_close,
257 patch_seq_tcp_listen as tcp_listen, patch_seq_tcp_read as tcp_read,
258 patch_seq_tcp_write as tcp_write,
259};
260
261pub use udp::{
263 patch_seq_udp_bind as udp_bind, patch_seq_udp_close as udp_close,
264 patch_seq_udp_receive_from as udp_receive_from, patch_seq_udp_send_to as udp_send_to,
265};
266
267pub use os::{
269 patch_seq_current_dir as current_dir, patch_seq_exit as exit, patch_seq_getenv as getenv,
270 patch_seq_home_dir as home_dir, patch_seq_os_arch as os_arch, patch_seq_os_name as os_name,
271 patch_seq_path_exists as path_exists, patch_seq_path_filename as path_filename,
272 patch_seq_path_is_dir as path_is_dir, patch_seq_path_is_file as path_is_file,
273 patch_seq_path_join as path_join, patch_seq_path_parent as path_parent,
274};
275
276pub use variant_ops::{
278 patch_seq_make_variant_0 as make_variant_0, patch_seq_make_variant_1 as make_variant_1,
279 patch_seq_make_variant_2 as make_variant_2, patch_seq_make_variant_3 as make_variant_3,
280 patch_seq_make_variant_4 as make_variant_4, patch_seq_make_variant_5 as make_variant_5,
281 patch_seq_make_variant_6 as make_variant_6, patch_seq_make_variant_7 as make_variant_7,
282 patch_seq_make_variant_8 as make_variant_8, patch_seq_make_variant_9 as make_variant_9,
283 patch_seq_make_variant_10 as make_variant_10, patch_seq_make_variant_11 as make_variant_11,
284 patch_seq_make_variant_12 as make_variant_12, patch_seq_unpack_variant as unpack_variant,
285 patch_seq_variant_field_at as variant_field_at,
286 patch_seq_variant_field_count as variant_field_count, patch_seq_variant_tag as variant_tag,
287};
288
289pub use args::{
291 patch_seq_arg_at as arg_at, patch_seq_arg_count as arg_count, patch_seq_args_init as args_init,
292};
293
294pub use file::{
296 patch_seq_file_exists as file_exists,
297 patch_seq_file_for_each_line_plus as file_for_each_line_plus,
298 patch_seq_file_slurp as file_slurp,
299};
300
301pub use list_ops::{
303 patch_seq_list_each as list_each, patch_seq_list_empty as list_empty,
304 patch_seq_list_filter as list_filter, patch_seq_list_fold as list_fold,
305 patch_seq_list_get as list_get, patch_seq_list_length as list_length,
306 patch_seq_list_make as list_make, patch_seq_list_map as list_map,
307 patch_seq_list_push as list_push, patch_seq_list_reverse as list_reverse,
308 patch_seq_list_set as list_set,
309};
310
311pub use map_ops::{
313 patch_seq_make_map as make_map, patch_seq_map_each as map_each,
314 patch_seq_map_empty as map_empty, patch_seq_map_fold as map_fold, patch_seq_map_get as map_get,
315 patch_seq_map_has as map_has, patch_seq_map_keys as map_keys,
316 patch_seq_map_remove as map_remove, patch_seq_map_set as map_set,
317 patch_seq_map_size as map_size, patch_seq_map_values as map_values,
318};
319
320pub use test::{
322 patch_seq_test_assert as test_assert, patch_seq_test_assert_eq as test_assert_eq,
323 patch_seq_test_assert_eq_str as test_assert_eq_str,
324 patch_seq_test_assert_not as test_assert_not, patch_seq_test_fail as test_fail,
325 patch_seq_test_fail_count as test_fail_count, patch_seq_test_finish as test_finish,
326 patch_seq_test_has_failures as test_has_failures, patch_seq_test_init as test_init,
327 patch_seq_test_pass_count as test_pass_count, patch_seq_test_set_line as test_set_line,
328 patch_seq_test_set_name as test_set_name,
329};
330
331pub use time_ops::{
333 patch_seq_time_nanos as time_nanos, patch_seq_time_now as time_now,
334 patch_seq_time_sleep_ms as time_sleep_ms,
335};
336
337pub use terminal::{
339 patch_seq_terminal_flush as terminal_flush, patch_seq_terminal_height as terminal_height,
340 patch_seq_terminal_raw_mode as terminal_raw_mode,
341 patch_seq_terminal_read_char as terminal_read_char,
342 patch_seq_terminal_read_char_nonblock as terminal_read_char_nonblock,
343 patch_seq_terminal_width as terminal_width,
344};
345
346#[cfg(feature = "http")]
348pub use http_client::{
349 patch_seq_http_delete as http_delete, patch_seq_http_get as http_get,
350 patch_seq_http_post as http_post, patch_seq_http_put as http_put,
351};
352#[cfg(not(feature = "http"))]
353pub use http_stub::{
354 patch_seq_http_delete as http_delete, patch_seq_http_get as http_get,
355 patch_seq_http_post as http_post, patch_seq_http_put as http_put,
356};