A Rust clinet for operating Nacos.
This project is heavy under development.
```rust use nacos_core::NacosClient;
async fn main() -> anyhow::Result<()> { let client = NacosClient::new("http", "localhost", 8848); let namespaceclient = client.namespaceclient(); let namespaces = namespaceclient.listnamespaces().await?; for ns in namespaces.iter() { println!("{} {}", ns.namespace, ns.namespaceshowname); } Ok(()) } ```