neo3 1.0.2

Production-ready Rust SDK for Neo N3 blockchain with high-level API, unified error handling, and enterprise features
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
	// This build script helps with documentation generation on docs.rs

	// Set cfg flags for docs.rs
	if std::env::var("DOCS_RS").is_ok() {
		// This tells rustdoc to show documentation for all features
		println!("cargo:rustc-cfg=docsrs");
	}
}