From 42b3b0b12311ae7c3e685d3172d3007d7774e591 Mon Sep 17 00:00:00 2001 From: svartalf Date: Thu, 8 Aug 2019 17:13:48 +0300 Subject: [PATCH] Release v0.0.6 --- CHANGELOG.md | 2 +- README.md | 2 +- heim-common/Cargo.toml | 6 ++--- heim-common/README.md | 2 +- heim-common/src/lib.rs | 2 +- heim-cpu/Cargo.toml | 8 +++---- heim-cpu/README.md | 2 +- heim-cpu/src/lib.rs | 2 +- heim-cpu/src/sys/windows/bindings/winternl.rs | 7 ++++-- heim-derive/Cargo.toml | 4 ++-- heim-derive/README.md | 2 +- heim-derive/src/lib.rs | 2 +- heim-disk/Cargo.toml | 8 +++---- heim-disk/README.md | 2 +- heim-disk/src/lib.rs | 2 +- heim-host/Cargo.toml | 8 +++---- heim-host/README.md | 2 +- heim-host/src/lib.rs | 2 +- heim-memory/Cargo.toml | 8 +++---- heim-memory/README.md | 2 +- heim-memory/src/lib.rs | 2 +- heim-net/Cargo.toml | 8 +++---- heim-net/README.md | 2 +- heim-net/src/lib.rs | 2 +- heim-process/Cargo.toml | 9 ++++---- heim-process/README.md | 2 +- heim-process/src/lib.rs | 2 +- heim-runtime/Cargo.toml | 2 +- heim-sensors/Cargo.toml | 2 +- heim-virt/Cargo.toml | 6 ++--- heim-virt/README.md | 2 +- heim-virt/src/lib.rs | 2 +- heim/Cargo.toml | 22 +++++++++---------- heim/src/lib.rs | 2 +- 34 files changed, 71 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aa04dc7..65080b28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.0.6] - 2019-08-08 ### Added diff --git a/README.md b/README.md index 141069df..31dbc87a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim.svg)](https://crates.io/crates/heim) [![Latest Version](https://docs.rs/heim/badge.svg)](https://docs.rs/heim) -[![dependency status](https://deps.rs/crate/heim/0.0.5/status.svg)](https://deps.rs/crate/heim/0.0.5) +[![dependency status](https://deps.rs/crate/heim/0.0.6/status.svg)](https://deps.rs/crate/heim/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) [![Coverage Status](https://coveralls.io/repos/github/heim-rs/heim/badge.svg?branch=master)](https://coveralls.io/github/heim-rs/heim?branch=master) ![Minimum rustc version](https://img.shields.io/badge/rustc-1.36+-green.svg) diff --git a/heim-common/Cargo.toml b/heim-common/Cargo.toml index b5f2005c..312ce3f7 100644 --- a/heim-common/Cargo.toml +++ b/heim-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-common" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Common stuff shared across heim project crates" @@ -12,10 +12,10 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } cfg-if = "0.1.7" futures-preview = "0.3.0-alpha.17" diff --git a/heim-common/README.md b/heim-common/README.md index 8a02359a..b56a9ff0 100644 --- a/heim-common/README.md +++ b/heim-common/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-common.svg)](https://crates.io/crates/heim-common) [![Latest Version](https://docs.rs/heim/badge.svg)](https://docs.rs/heim-common) -[![dependency status](https://deps.rs/crate/heim-common/0.0.5/status.svg)](https://deps.rs/crate/heim-common/0.0.5) +[![dependency status](https://deps.rs/crate/heim-common/0.0.6/status.svg)](https://deps.rs/crate/heim-common/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Minimum rustc version](https://img.shields.io/badge/rustc-1.36+-green.svg) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) diff --git a/heim-common/src/lib.rs b/heim-common/src/lib.rs index 42614b72..0da6ff3c 100644 --- a/heim-common/src/lib.rs +++ b/heim-common/src/lib.rs @@ -2,7 +2,7 @@ //! //! Do **NOT** use it directly. -#![doc(html_root_url = "https://docs.rs/heim-common/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-common/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-cpu/Cargo.toml b/heim-cpu/Cargo.toml index e60a5e34..483a6931 100644 --- a/heim-cpu/Cargo.toml +++ b/heim-cpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-cpu" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform CPU information" @@ -12,11 +12,11 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } lazy_static = "1.3.0" cfg-if = "0.1.7" diff --git a/heim-cpu/README.md b/heim-cpu/README.md index 8fe93384..4b86964b 100644 --- a/heim-cpu/README.md +++ b/heim-cpu/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-cpu.svg)](https://crates.io/crates/heim-cpu) [![Latest Version](https://docs.rs/heim-cpu/badge.svg)](https://docs.rs/heim-cpu) -[![dependency status](https://deps.rs/crate/heim-cpu/0.0.5/status.svg)](https://deps.rs/crate/heim-cpu/0.0.5) +[![dependency status](https://deps.rs/crate/heim-cpu/0.0.6/status.svg)](https://deps.rs/crate/heim-cpu/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-cpu/src/lib.rs b/heim-cpu/src/lib.rs index b8bebd11..bd1626ce 100644 --- a/heim-cpu/src/lib.rs +++ b/heim-cpu/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `cpu` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-cpu/src/sys/windows/bindings/winternl.rs b/heim-cpu/src/sys/windows/bindings/winternl.rs index 60f2df72..2a7aa5b1 100644 --- a/heim-cpu/src/sys/windows/bindings/winternl.rs +++ b/heim-cpu/src/sys/windows/bindings/winternl.rs @@ -3,7 +3,7 @@ use std::ptr; use std::mem; -use winapi::shared::{ntdef, minwindef}; +use winapi::shared::{ntdef, minwindef, ntstatus}; use heim_common::prelude::*; use heim_common::sys::windows as ntdll; @@ -152,12 +152,15 @@ pub fn query_system_information() -> Result> where T: SystemInformatio let buffer_length = proc_amount * mem::size_of::(); unsafe { - ntdll::NtQuerySystemInformation( + let result = ntdll::NtQuerySystemInformation( T::class(), info.as_mut_ptr() as *mut _, buffer_length as u32, ptr::null_mut(), )?; + if result != ntstatus::STATUS_SUCCESS { + return Err(Error::last_os_error()) + } info.set_len(proc_amount); }; diff --git a/heim-derive/Cargo.toml b/heim-derive/Cargo.toml index 7b2bce91..8b501428 100644 --- a/heim-derive/Cargo.toml +++ b/heim-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-derive" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Derive macros for heim crates" @@ -12,7 +12,7 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [lib] proc-macro = true diff --git a/heim-derive/README.md b/heim-derive/README.md index a6144479..7f2dc6c5 100644 --- a/heim-derive/README.md +++ b/heim-derive/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-derive.svg)](https://crates.io/crates/heim-derive) [![Latest Version](https://docs.rs/heim-derive/badge.svg)](https://docs.rs/heim-derive) -[![dependency status](https://deps.rs/crate/heim-derive/0.0.5/status.svg)](https://deps.rs/crate/heim-derive/0.0.5) +[![dependency status](https://deps.rs/crate/heim-derive/0.0.6/status.svg)](https://deps.rs/crate/heim-derive/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-derive/src/lib.rs b/heim-derive/src/lib.rs index 949be862..d7928ca6 100644 --- a/heim-derive/src/lib.rs +++ b/heim-derive/src/lib.rs @@ -2,7 +2,7 @@ //! //! Do not use directly. -#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.6")] #![recursion_limit = "128"] #![deny( unused, diff --git a/heim-disk/Cargo.toml b/heim-disk/Cargo.toml index fba2349b..8cb3f1c6 100644 --- a/heim-disk/Cargo.toml +++ b/heim-disk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-disk" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform disk information" @@ -12,11 +12,11 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.7" bitflags = "1.0.4" diff --git a/heim-disk/README.md b/heim-disk/README.md index 2e1912dc..db8bac22 100644 --- a/heim-disk/README.md +++ b/heim-disk/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-disk.svg)](https://crates.io/crates/heim-disk) [![Latest Version](https://docs.rs/heim-disk/badge.svg)](https://docs.rs/heim-disk) -[![dependency status](https://deps.rs/crate/heim-disk/0.0.5/status.svg)](https://deps.rs/crate/heim-disk/0.0.5) +[![dependency status](https://deps.rs/crate/heim-disk/0.0.6/status.svg)](https://deps.rs/crate/heim-disk/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-disk/src/lib.rs b/heim-disk/src/lib.rs index bb698ec6..a170c36f 100644 --- a/heim-disk/src/lib.rs +++ b/heim-disk/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `disk` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-host/Cargo.toml b/heim-host/Cargo.toml index 06c180eb..b5d20be4 100644 --- a/heim-host/Cargo.toml +++ b/heim-host/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-host" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform host information" @@ -13,11 +13,11 @@ build = "build.rs" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.7" platforms = "0.2.0" diff --git a/heim-host/README.md b/heim-host/README.md index 7c604c72..edd8894b 100644 --- a/heim-host/README.md +++ b/heim-host/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-host.svg)](https://crates.io/crates/heim-host) [![Latest Version](https://docs.rs/heim-host/badge.svg)](https://docs.rs/heim-host) -[![dependency status](https://deps.rs/crate/heim-host/0.0.5/status.svg)](https://deps.rs/crate/heim-host/0.0.5) +[![dependency status](https://deps.rs/crate/heim-host/0.0.6/status.svg)](https://deps.rs/crate/heim-host/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-host/src/lib.rs b/heim-host/src/lib.rs index b161f260..2775e118 100644 --- a/heim-host/src/lib.rs +++ b/heim-host/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `host` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-host/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-host/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-memory/Cargo.toml b/heim-memory/Cargo.toml index 645e4307..b1901aef 100644 --- a/heim-memory/Cargo.toml +++ b/heim-memory/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-memory" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform memory information" @@ -12,11 +12,11 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.7" diff --git a/heim-memory/README.md b/heim-memory/README.md index 360e0147..81758dff 100644 --- a/heim-memory/README.md +++ b/heim-memory/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-memory.svg)](https://crates.io/crates/heim-memory) [![Latest Version](https://docs.rs/heim-memory/badge.svg)](https://docs.rs/heim-memory) -[![dependency status](https://deps.rs/crate/heim-memory/0.0.5/status.svg)](https://deps.rs/crate/heim-memory/0.0.5) +[![dependency status](https://deps.rs/crate/heim-memory/0.0.6/status.svg)](https://deps.rs/crate/heim-memory/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-memory/src/lib.rs b/heim-memory/src/lib.rs index 3980b51e..8695cc07 100644 --- a/heim-memory/src/lib.rs +++ b/heim-memory/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `memory` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-net/Cargo.toml b/heim-net/Cargo.toml index 1e5b7dcf..640a141a 100644 --- a/heim-net/Cargo.toml +++ b/heim-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-net" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform network information" @@ -12,11 +12,11 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.7" bitflags = "1.0.4" diff --git a/heim-net/README.md b/heim-net/README.md index 130ba230..0e8f2a33 100644 --- a/heim-net/README.md +++ b/heim-net/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-net.svg)](https://crates.io/crates/heim-net) [![Latest Version](https://docs.rs/heim-net/badge.svg)](https://docs.rs/heim-net) -[![dependency status](https://deps.rs/crate/heim-net/0.0.5/status.svg)](https://deps.rs/crate/heim-net/0.0.5) +[![dependency status](https://deps.rs/crate/heim-net/0.0.6/status.svg)](https://deps.rs/crate/heim-net/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-net/src/lib.rs b/heim-net/src/lib.rs index f15bfd73..6ef36e35 100644 --- a/heim-net/src/lib.rs +++ b/heim-net/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `net` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-net/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-net/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-process/Cargo.toml b/heim-process/Cargo.toml index e61f3159..ca5c7465 100644 --- a/heim-process/Cargo.toml +++ b/heim-process/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-process" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform processes information" @@ -12,11 +12,11 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-derive = { version = "0.0.5", path = "../heim-derive" } -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.7" libc = "0.2.58" @@ -45,7 +45,6 @@ mach = "0.3.2" [dev-dependencies] runtime = "0.3.0-alpha.6" version-sync = "0.8" -backtrace = "0.3" [features] runtime-polyfill = ["heim-runtime/runtime-polyfill"] diff --git a/heim-process/README.md b/heim-process/README.md index f7916be5..4e94dd79 100644 --- a/heim-process/README.md +++ b/heim-process/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-process.svg)](https://crates.io/crates/heim-process) [![Latest Version](https://docs.rs/heim-process/badge.svg)](https://docs.rs/heim-process) -[![dependency status](https://deps.rs/crate/heim-process/0.0.5/status.svg)](https://deps.rs/crate/heim-process/0.0.5) +[![dependency status](https://deps.rs/crate/heim-process/0.0.6/status.svg)](https://deps.rs/crate/heim-process/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-process/src/lib.rs b/heim-process/src/lib.rs index 610517bc..31192e0b 100644 --- a/heim-process/src/lib.rs +++ b/heim-process/src/lib.rs @@ -2,7 +2,7 @@ //! //! This module is enabled with the `process` feature flag (enabled by default). -#![doc(html_root_url = "https://docs.rs/heim-process/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-process/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim-runtime/Cargo.toml b/heim-runtime/Cargo.toml index 6291b6af..9f2e136b 100644 --- a/heim-runtime/Cargo.toml +++ b/heim-runtime/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/heim-rs/heim" license = "Apache-2.0 OR MIT" [dependencies] -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-common = { version = "0.0.6", path = "../heim-common" } cfg-if = "0.1.9" # `runtime-polyfill` feature dependencies diff --git a/heim-sensors/Cargo.toml b/heim-sensors/Cargo.toml index c44a28bb..f64df4b3 100644 --- a/heim-sensors/Cargo.toml +++ b/heim-sensors/Cargo.toml @@ -12,6 +12,6 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim", pipeline = "heim-rs.heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] diff --git a/heim-virt/Cargo.toml b/heim-virt/Cargo.toml index 067a4ac6..3df1e110 100644 --- a/heim-virt/Cargo.toml +++ b/heim-virt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim-virt" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform virtualization system detection" @@ -12,10 +12,10 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-common = { version = "0.0.5", path = "../heim-common" } +heim-common = { version = "0.0.6", path = "../heim-common" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } cfg-if = "0.1.9" diff --git a/heim-virt/README.md b/heim-virt/README.md index a6270d48..943c9048 100644 --- a/heim-virt/README.md +++ b/heim-virt/README.md @@ -2,7 +2,7 @@ [![Latest Version](https://img.shields.io/crates/v/heim-virt.svg)](https://crates.io/crates/heim-virt) [![Latest Version](https://docs.rs/heim-virt/badge.svg)](https://docs.rs/heim-virt) -[![dependency status](https://deps.rs/crate/heim-virt/0.0.5/status.svg)](https://deps.rs/crate/heim-virt/0.0.5) +[![dependency status](https://deps.rs/crate/heim-virt/0.0.6/status.svg)](https://deps.rs/crate/heim-virt/0.0.6) [![Build Status](https://dev.azure.com/heim-rs/heim/_apis/build/status/heim-rs.heim?branchName=master)](https://dev.azure.com/heim-rs/heim/_build/latest?definitionId=1&branchName=master) ![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg) [![Gitter](https://badges.gitter.im/heim-rs/heim.svg)](https://gitter.im/heim-rs/heim) diff --git a/heim-virt/src/lib.rs b/heim-virt/src/lib.rs index f539940a..e4522f74 100644 --- a/heim-virt/src/lib.rs +++ b/heim-virt/src/lib.rs @@ -8,7 +8,7 @@ //! See the [issues list](https://github.com/heim-rs/heim/issues?q=is%3Aissue+is%3Aopen+label%3AA-virt) //! for a not supported currently systems. -#![doc(html_root_url = "https://docs.rs/heim-virt/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim-virt/0.0.6")] #![deny( unused, unused_imports, diff --git a/heim/Cargo.toml b/heim/Cargo.toml index 44bdcc79..2c9c3eb2 100644 --- a/heim/Cargo.toml +++ b/heim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heim" -version = "0.0.5" +version = "0.0.6" authors = ["svartalf "] edition = "2018" description = "Cross-platform framework for system information" @@ -12,19 +12,19 @@ license = "Apache-2.0 OR MIT" [badges] maintenance = { status = "experimental" } -azure-devops = { project = "heim-rs", pipeline = "heim" } +azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" } [dependencies] -heim-common = { version = "0.0.5", path = "../heim-common" } -heim-derive = { version = "0.0.5", path = "../heim-derive" } +heim-common = { version = "0.0.6", path = "../heim-common" } +heim-derive = { version = "0.0.6", path = "../heim-derive" } heim-runtime = { version = "0.0.2", path = "../heim-runtime" } -heim-cpu = {version = "0.0.5", path = "../heim-cpu", optional = true } -heim-disk = {version = "0.0.5", path = "../heim-disk", optional = true } -heim-host = { version = "0.0.5", path = "../heim-host", optional = true } -heim-memory = {version = "0.0.5", path = "../heim-memory", optional = true } -heim-net = {version = "0.0.5", path = "../heim-net", optional = true } -heim-process = { version = "0.0.5", path = "../heim-process", optional = true } -heim-virt = { version = "0.0.5", path = "../heim-virt", optional = true } +heim-cpu = {version = "0.0.6", path = "../heim-cpu", optional = true } +heim-disk = {version = "0.0.6", path = "../heim-disk", optional = true } +heim-host = { version = "0.0.6", path = "../heim-host", optional = true } +heim-memory = {version = "0.0.6", path = "../heim-memory", optional = true } +heim-net = {version = "0.0.6", path = "../heim-net", optional = true } +heim-process = { version = "0.0.6", path = "../heim-process", optional = true } +heim-virt = { version = "0.0.6", path = "../heim-virt", optional = true } [dev-dependencies] version-sync = "0.8" diff --git a/heim/src/lib.rs b/heim/src/lib.rs index 9ef06763..ebcffe19 100644 --- a/heim/src/lib.rs +++ b/heim/src/lib.rs @@ -29,7 +29,7 @@ //! If you are browsing this documentation via [docs.rs](https://docs.rs/heim), //! do not forget to use the platform selector at the page header. -#![doc(html_root_url = "https://docs.rs/heim/0.0.5")] +#![doc(html_root_url = "https://docs.rs/heim/0.0.6")] #![deny( unused, unused_imports,