chore: merge release-v0.1.2 into main

This commit is contained in:
Jack Wills
2022-07-23 14:10:11 +00:00
3 changed files with 8 additions and 9 deletions
+1 -7
View File
@@ -1,13 +1,7 @@
### 2022-07-23 ### 2022-07-23
### Chores
+ update Cargo.toml, in preparation for crates.io publishing, [fdc6898e20c41415f03e310d7b84af4b6c39ab62]
### Docs
+ added cargo install instructions, [c774b10d557b10885b9d3a0b3612330a8ecb1cd5]
### Fixes ### Fixes
+ use SpawnId for docker hashmap JoinHandle mapping, [1ae95d58c3302a95d5a0a2f0b61b126c72b6e166] + remove reqwest dependency, [10ff8bab5f01f097fd6cdec60b2be947f238197b]
see <a href='https://github.com/mrjackwills/oxker/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details see <a href='https://github.com/mrjackwills/oxker/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
+6
View File
@@ -1,3 +1,9 @@
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.2'>v0.1.2</a>
### 2022-07-23
### Fixes
+ remove reqwest dependency, [10ff8bab](https://github.com/mrjackwills/oxker/commit/10ff8bab5f01f097fd6cdec60b2be947f238197b),
# <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.1'>v0.1.1</a> # <a href='https://github.com/mrjackwills/oxker/releases/tag/v0.1.1'>v0.1.1</a>
### 2022-07-23 ### 2022-07-23
+1 -2
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "oxker" name = "oxker"
version = "0.1.1" version = "0.1.2"
edition = "2021" edition = "2021"
authors = ["Jack Wills <email@mrjackwills.com>"] authors = ["Jack Wills <email@mrjackwills.com>"]
description = "a simple tui to view & control docker containers" description = "a simple tui to view & control docker containers"
@@ -19,7 +19,6 @@ clap={version="3.2", features = ["derive", "unicode"] }
crossterm = "0.24" crossterm = "0.24"
futures-util = "0.3" futures-util = "0.3"
parking_lot = {version= "0.12"} parking_lot = {version= "0.12"}
reqwest = "0.11.11"
tokio = {version = "1.20", features=["full"]} tokio = {version = "1.20", features=["full"]}
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"