nacos-sdk 0.4.3

Nacos client in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
type-complexity-threshold = 500
disallowed-methods = [
    # Mutating environment variables in a multi-threaded context can cause data races.
    # see https://github.com/rust-lang/rust/issues/90308 for details.
    "std::env::set_var",
    "std::env::remove_var",

    # Use tokio::time::sleep instead.
    "std::time::sleep",
]
disallowed-types = [
    # Use tokio::time::Instant instead.
    "std::time::Instant",
]