noosphere-cli 0.17.0

Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(not(target_arch = "wasm32"))]
#[tokio::main(flavor = "multi_thread")]
pub async fn main() -> anyhow::Result<()> {
    // Call out to an external module for platform-specific compilation purposes
    noosphere_cli::main().await?;

    Ok(())
}

#[cfg(target_arch = "wasm32")]
#[allow(unused_must_use)]
pub fn main() {
    noosphere_cli::main();
}