artichoke_backend/extn/stdlib/
mod.rs1use crate::extn::prelude::*;
2
3#[cfg(feature = "stdlib-abbrev")]
4pub(in crate::extn) mod abbrev;
5#[cfg(feature = "stdlib-base64")]
6pub(in crate::extn) mod base64;
7#[cfg(feature = "stdlib-cmath")]
8pub(in crate::extn) mod cmath;
9#[cfg(feature = "stdlib-delegate")]
10pub(in crate::extn) mod delegate;
11#[cfg(feature = "stdlib-forwardable")]
12pub(in crate::extn) mod forwardable;
13#[cfg(feature = "stdlib-json")]
14pub(in crate::extn) mod json;
15#[cfg(feature = "stdlib-monitor")]
16pub(in crate::extn) mod monitor;
17#[cfg(feature = "stdlib-ostruct")]
18pub(in crate::extn) mod ostruct;
19#[cfg(feature = "stdlib-securerandom")]
20pub(in crate::extn) mod securerandom;
21#[cfg(feature = "stdlib-set")]
22pub(in crate::extn) mod set;
23#[cfg(feature = "stdlib-shellwords")]
24pub(in crate::extn) mod shellwords;
25#[cfg(feature = "stdlib-strscan")]
26pub(in crate::extn) mod strscan;
27#[cfg(feature = "stdlib-time")]
28pub(in crate::extn) mod time;
29#[cfg(feature = "stdlib-uri")]
30pub(in crate::extn) mod uri;
31
32#[allow(unused_variables)]
33pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
34 #[cfg(feature = "stdlib-abbrev")]
35 abbrev::init(interp)?;
36 #[cfg(feature = "stdlib-base64")]
37 base64::init(interp)?;
38 #[cfg(feature = "stdlib-cmath")]
39 cmath::init(interp)?;
40 #[cfg(feature = "stdlib-delegate")]
41 delegate::init(interp)?;
42 #[cfg(feature = "stdlib-forwardable")]
43 forwardable::init(interp)?;
44 #[cfg(feature = "stdlib-json")]
45 json::init(interp)?;
46 #[cfg(feature = "stdlib-monitor")]
47 monitor::init(interp)?;
48 #[cfg(feature = "stdlib-ostruct")]
49 ostruct::init(interp)?;
50 #[cfg(feature = "stdlib-securerandom")]
51 securerandom::mruby::init(interp)?;
52 #[cfg(feature = "stdlib-set")]
53 set::init(interp)?;
54 #[cfg(feature = "stdlib-shellwords")]
55 shellwords::init(interp)?;
56 #[cfg(feature = "stdlib-strscan")]
57 strscan::init(interp)?;
58 #[cfg(feature = "stdlib-time")]
59 time::init(interp)?;
60 #[cfg(feature = "stdlib-uri")]
61 uri::init(interp)?;
62
63 Ok(())
64}