forked from heim-rs/heim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
43 changed files
with
172 additions
and
164 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -36,7 +36,7 @@ features = [ | |
] | ||
|
||
[target.'cfg(target_os = "macos")'.dependencies] | ||
libc = "0.2.58" | ||
libc = "~ 0.2" | ||
mach = "0.3.2" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.