diff --git a/rust/Cargo.toml b/rust/Cargo.toml index a79693a..6e75e07 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "freenet-stdlib" -version = "0.1.10" +version = "0.1.11" edition = "2021" rust-version = "1.71.1" publish = true diff --git a/rust/src/client_api/client_events.rs b/rust/src/client_api/client_events.rs index da1aa2b..d2878d2 100644 --- a/rust/src/client_api/client_events.rs +++ b/rust/src/client_api/client_events.rs @@ -760,7 +760,8 @@ pub struct NodeDiagnosticsResponse { pub struct NodeInfo { pub peer_id: String, pub is_gateway: bool, - pub location: String, + pub location: Option, + pub listening_address: Option, pub uptime_seconds: u64, }