rain-metadata 0.0.2-alpha.6

Tooling and utilities for RainLanguage metadata.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod meta;
pub mod error;
pub(crate) mod cli;
pub(crate) mod solc;
pub(crate) mod subgraph;

#[cfg(feature = "tokio-full")]
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    cli::main()
}

#[cfg(not(feature = "tokio-full"))]
#[tokio::main(flavor = "current_thread")]
async fn main() -> anyhow::Result<()> {
    cli::main()
}