Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion rust/src/client_api/client_events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,8 @@ pub struct NodeDiagnosticsResponse {
pub struct NodeInfo {
pub peer_id: String,
pub is_gateway: bool,
pub location: String,
pub location: Option<String>,
pub listening_address: Option<String>,
pub uptime_seconds: u64,
}

Expand Down