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;
12pub mod nns;
13#[cfg(feature = "host")]
14mod output;
15#[cfg(feature = "host")]
16mod progress;
17#[cfg(feature = "host")]
18mod project;
19#[cfg(feature = "host")]
20mod runtime;
21#[cfg(feature = "host")]
22pub(crate) mod snapshot_cache;
23pub mod sns;
24pub mod subnet_catalog;
25mod table;
26#[cfg(feature = "host")]
27mod text_search;
28mod token_amount;
29mod token_metadata_text;
30
31#[cfg(all(test, feature = "host"))]
32mod test_support;
33
34const VERSION_TEXT: &str = concat!("icq ", env!("CARGO_PKG_VERSION"));
35
36#[must_use]
37pub const fn version_text() -> &'static str {
38 VERSION_TEXT
39}
40
41#[cfg(test)]
42mod tests;