summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipfs-api/src/client.rs2
-rw-r--r--ipfs-api/src/response/tests/v0_version_1.json5
-rw-r--r--ipfs-api/src/response/version.rs9
3 files changed, 13 insertions, 3 deletions
diff --git a/ipfs-api/src/client.rs b/ipfs-api/src/client.rs
index e7f3d65..3a37cf0 100644
--- a/ipfs-api/src/client.rs
+++ b/ipfs-api/src/client.rs
@@ -26,7 +26,7 @@ use hyper::{body, client::Builder};
use hyper_multipart::client::multipart;
#[cfg(feature = "hyper")]
use hyper_tls::HttpsConnector;
-use parity_multiaddr::{Protocol};
+use parity_multiaddr::Protocol;
use serde::{Deserialize, Serialize};
use serde_json;
use std::{
diff --git a/ipfs-api/src/response/tests/v0_version_1.json b/ipfs-api/src/response/tests/v0_version_1.json
new file mode 100644
index 0000000..2d3b706
--- /dev/null
+++ b/ipfs-api/src/response/tests/v0_version_1.json
@@ -0,0 +1,5 @@
+{
+ "Version": "0.4.11",
+ "Commit": "",
+ "Repo": "6"
+}
diff --git a/ipfs-api/src/response/version.rs b/ipfs-api/src/response/version.rs
index 57c6857..ec6837b 100644
--- a/ipfs-api/src/response/version.rs
+++ b/ipfs-api/src/response/version.rs
@@ -14,11 +14,16 @@ pub struct VersionResponse {
pub version: String,
pub commit: String,
pub repo: String,
- pub system: String,
- pub golang: String,
+
+ // Not declared in the IPFS interface spec.
+ pub system: Option<String>,
+
+ // Only for the Go implementation of IPFS.
+ pub golang: Option<String>,
}
#[cfg(test)]
mod tests {
deserialize_test!(v0_version_0, VersionResponse);
+ deserialize_test!(v0_version_1, VersionResponse);
}