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;
24#[cfg(feature = "host")]
25pub mod subnet_catalog;
26mod table;
27#[cfg(feature = "host")]
28mod text_search;
29mod token_amount;
30mod token_metadata_text;
31
32#[cfg(all(test, feature = "host"))]
33mod test_support;
34
35const VERSION_TEXT: &str = concat!("icq ", env!("CARGO_PKG_VERSION"));
36
37#[must_use]
38pub const fn version_text() -> &'static str {
39 VERSION_TEXT
40}
41
42#[cfg(test)]
43mod tests;