We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aff2e2 commit 3639656Copy full SHA for 3639656
Cargo.toml
@@ -38,7 +38,7 @@ hex = "0.4.0"
38
hmac = "~0.7.1"
39
lazy_static = "1.4.0"
40
md-5 = "0.8.0"
41
-os_info = { version = "2.0.6", default-features = false }
+os_info = { version = "3.0.1", default-features = false }
42
percent-encoding = "2.0.0"
43
rand = { version = "0.7.2", features = ["small_rng"] }
44
serde_with = "1.3.1"
src/cmap/establish/handshake/mod.rs
@@ -120,7 +120,7 @@ lazy_static! {
120
if info.os_type() != Type::Unknown {
121
let version = info.version();
122
123
- if *version != Version::unknown() {
+ if *version != Version::Unknown {
124
metadata.os.version = Some(info.version().to_string());
125
}
126
0 commit comments