1#[cfg(feature = "host")]
2mod cache_file;
3#[cfg(feature = "cli")]
4mod cli;
5#[cfg(feature = "host")]
6mod duration;
7#[cfg(feature = "host")]
8mod hex;
9#[cfg(feature = "host")]
10mod ic_registry;
11pub mod icrc;
12#[cfg(feature = "host")]
13pub mod nns;
14#[cfg(feature = "host")]
15mod output;
16#[cfg(feature = "host")]
17mod progress;
18#[cfg(feature = "host")]
19mod project;
20#[cfg(feature = "host")]
21mod runtime;
22#[cfg(feature = "host")]
23pub(crate) mod snapshot_cache;
24#[cfg(feature = "host")]
25pub mod sns;
26#[cfg(feature = "host")]
27pub mod subnet_catalog;
28mod table;
29#[cfg(feature = "host")]
30mod text_search;
31mod token_amount;
32mod token_metadata_text;
33
34#[cfg(all(test, feature = "host"))]
35mod test_support;
36
37const VERSION_TEXT: &str = concat!("icq ", env!("CARGO_PKG_VERSION"));
38
39#[must_use]
40pub const fn version_text() -> &'static str {
41 VERSION_TEXT
42}
43
44#[cfg(test)]
45mod tests;