Skip to content

Commit

Permalink
Release v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Aug 30, 2019
1 parent 03d90e4 commit ae7eb77
Show file tree
Hide file tree
Showing 43 changed files with 172 additions and 164 deletions.
Binary file modified .github/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `process::Process::cpu_time` method returning CPU times for process (#107, #108, #109)
- `process::Process::memory` method returning process memory usage (#121, #122, #123)
- `process::Process::cpu_usage` method returning CPU usage by process (#134, #135, #136)
- `process::Process::cwd` for Linux and macOS (#103, #104)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim/0.0.6)
[![dependency status](https://deps.rs/crate/heim/0.0.7/status.svg)](https://deps.rs/crate/heim/0.0.7)
[![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)
Expand Down
5 changes: 2 additions & 3 deletions heim-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-common"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Common stuff shared across heim project crates"
Expand All @@ -15,7 +15,6 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
heim-derive = { version = "0.0.6", path = "../heim-derive" }
cfg-if = "0.1.7"
futures-preview = "0.3.0-alpha.18"
pin-utils = "0.1.0-alpha.4"
Expand All @@ -25,7 +24,7 @@ uom = { version = "0.25.0", default-features = false, features = ["autoconvert",
version-sync = "0.8"

[target.'cfg(unix)'.dependencies]
libc = "0.2.58"
libc = "~0.2"
nix = "0.15.0"
lazy_static = "1.3.0"

Expand Down
2 changes: 1 addition & 1 deletion heim-common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-common/0.0.6)
[![dependency status](https://deps.rs/crate/heim-common/0.0.7/status.svg)](https://deps.rs/crate/heim-common/0.0.7)
[![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)
Expand Down
4 changes: 3 additions & 1 deletion heim-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! Do **NOT** use it directly.
#![doc(html_root_url = "https://docs.rs/heim-common/0.0.6")]
#![doc(html_root_url = "https://docs.rs/heim-common/0.0.7")]
#![deny(
unused,
unused_imports,
Expand All @@ -24,8 +24,10 @@
)]

mod errors;
#[doc(hidden)]
pub mod sys;
pub mod units;
#[doc(hidden)]
pub mod utils;

pub use self::errors::{Error, Result};
Expand Down
12 changes: 6 additions & 6 deletions heim-cpu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-cpu"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform CPU information"
Expand All @@ -15,14 +15,14 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
lazy_static = "1.3.0"
cfg-if = "0.1.7"

[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.58"
libc = "~0.2"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = ">=0.3.8"
Expand All @@ -36,7 +36,7 @@ features = [
]

[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2.58"
libc = "~ 0.2"
mach = "0.3.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion heim-cpu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-cpu/0.0.6)
[![dependency status](https://deps.rs/crate/heim-cpu/0.0.7/status.svg)](https://deps.rs/crate/heim-cpu/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-cpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-cpu/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-derive"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Derive macros for heim crates"
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-derive/0.0.6)
[![dependency status](https://deps.rs/crate/heim-derive/0.0.7/status.svg)](https://deps.rs/crate/heim-derive/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! Do not use directly.
#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.6")]
#![doc(html_root_url = "https://docs.rs/heim-derive/0.0.7")]
#![recursion_limit = "128"]
#![deny(
unused,
Expand Down
10 changes: 5 additions & 5 deletions heim-disk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-disk"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform disk information"
Expand All @@ -15,14 +15,14 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
cfg-if = "0.1.7"
bitflags = "1.0.4"

[target.'cfg(unix)'.dependencies]
libc = "0.2.58"
libc = "~0.2"

[target.'cfg(target_os = "windows")'.dependencies]
widestring = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion heim-disk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-disk/0.0.6)
[![dependency status](https://deps.rs/crate/heim-disk/0.0.7/status.svg)](https://deps.rs/crate/heim-disk/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-disk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-disk/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
10 changes: 5 additions & 5 deletions heim-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-host"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform host information"
Expand All @@ -16,12 +16,12 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
cfg-if = "0.1.7"
platforms = "0.2.0"
libc = "0.2.58"
libc = "~0.2"

[dev-dependencies]
futures-preview = "0.3.0-alpha.18"
Expand Down
2 changes: 1 addition & 1 deletion heim-host/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-host/0.0.6)
[![dependency status](https://deps.rs/crate/heim-host/0.0.7/status.svg)](https://deps.rs/crate/heim-host/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-host/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
12 changes: 6 additions & 6 deletions heim-memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-memory"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform memory information"
Expand All @@ -15,17 +15,17 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
cfg-if = "0.1.7"

[target.'cfg(target_os = "windows")'.dependencies]
libc = "0.2.58"
libc = "~0.2"
winapi = { version = ">=0.3.8", default-features = false, features = ["minwindef", "sysinfoapi"] }

[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2.58"
libc = "~0.2"
mach = "0.3.2"
lazy_static = "1.3.0"

Expand Down
2 changes: 1 addition & 1 deletion heim-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-memory/0.0.6)
[![dependency status](https://deps.rs/crate/heim-memory/0.0.7/status.svg)](https://deps.rs/crate/heim-memory/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-memory/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-memory/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
10 changes: 5 additions & 5 deletions heim-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-net"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform network information"
Expand All @@ -15,13 +15,13 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
cfg-if = "0.1.7"
bitflags = "1.0.4"
macaddr = "0.1"
libc = "0.2.58"
libc = "~0.2"

[dev-dependencies]
futures-preview = "0.3.0-alpha.18"
Expand Down
2 changes: 1 addition & 1 deletion heim-net/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-net/0.0.6)
[![dependency status](https://deps.rs/crate/heim-net/0.0.7/status.svg)](https://deps.rs/crate/heim-net/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-net/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-net/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
16 changes: 8 additions & 8 deletions heim-process/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heim-process"
version = "0.0.6"
version = "0.0.7"
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform processes information"
Expand All @@ -15,17 +15,17 @@ maintenance = { status = "experimental" }
azure-devops = { project = "heim-rs/heim", pipeline = "heim-rs.heim" }

[dependencies]
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" }
heim-cpu = { version = "0.0.6", path = "../heim-cpu" }
heim-derive = { version = "0.0.7", path = "../heim-derive" }
heim-common = { version = "0.0.7", path = "../heim-common" }
heim-runtime = { version = "0.0.3", path = "../heim-runtime" }
heim-cpu = { version = "0.0.7", path = "../heim-cpu" }
cfg-if = "0.1.7"
libc = "0.2.58"
libc = "~0.2"
futures-preview = "0.3.0-alpha.18"
lazy_static = "1.3.0"

[target.'cfg(target_os = "linux")'.dependencies]
heim-net = { version = "0.0.6", path = "../heim-net" }
heim-net = { version = "0.0.7", path = "../heim-net" }

[target.'cfg(target_os = "windows")'.dependencies]
ntapi = "0.3.3"
Expand All @@ -47,7 +47,7 @@ features = [

[target.'cfg(target_os = "macos")'.dependencies]
mach = "0.3.2"
darwin-libproc = { git = "https://github.com/heim-rs/darwin-libproc.git" }
darwin-libproc = "0.1.1"

[dev-dependencies]
version-sync = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion heim-process/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6/status.svg)](https://deps.rs/crate/heim-process/0.0.6)
[![dependency status](https://deps.rs/crate/heim-process/0.0.7/status.svg)](https://deps.rs/crate/heim-process/0.0.7)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion heim-process/examples/process_current.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use heim_process as process;

#[heim_derive::main]
async fn main() -> Result<(), process::ProcessError> {
let process = process::Process::current().await?;
let process = process::current().await?;

// Let's start with a CPU usage in order to measure how much time it will take
// to load all the things. See the end of file for a second CPU usage call.
Expand Down
2 changes: 1 addition & 1 deletion heim-process/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.6")]
#![doc(html_root_url = "https://docs.rs/heim-process/0.0.7")]
#![deny(
unused,
unused_imports,
Expand Down
Loading

0 comments on commit ae7eb77

Please sign in to comment.