1#[cfg(feature = "host")]
18mod cache_file;
19#[cfg(feature = "cli")]
20mod cli;
21#[cfg(feature = "host")]
22mod duration;
23#[cfg(feature = "host")]
24mod hex;
25#[cfg(feature = "host")]
26mod ic_registry;
27pub mod icrc;
28pub mod nns;
29#[cfg(feature = "host")]
30mod output;
31#[cfg(feature = "host")]
32mod progress;
33#[cfg(feature = "host")]
34mod project;
35#[cfg(feature = "host")]
36mod runtime;
37#[cfg(feature = "host")]
38pub(crate) mod snapshot_cache;
39pub mod sns;
40pub mod subnet_catalog;
41mod table;
42#[cfg(feature = "host")]
43mod text_search;
44mod token_amount;
45mod token_metadata_text;
46
47#[cfg(all(test, feature = "host"))]
48mod test_support;
49
50const VERSION_TEXT: &str = concat!("icq ", env!("CARGO_PKG_VERSION"));
51
52#[must_use]
53pub const fn version_text() -> &'static str {
54 VERSION_TEXT
55}
56
57#[cfg(test)]
58mod tests;