From d7a4c705592b2a3ade6d08a35cd7330ef8e0a5f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 20:00:01 +0000 Subject: [PATCH 1/3] Format Rust code using rustfmt --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 250e249..511763a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,4 +25,3 @@ // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - From a8980d9a3ba7fc3de347f1a7bb2c1abb426297ad Mon Sep 17 00:00:00 2001 From: Yuri Edward Date: Mon, 25 Sep 2023 22:10:16 +0200 Subject: [PATCH 2/3] Fixed gitignore --- .gitignore | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 71f4b43..b4b1764 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,17 @@ +# Binary directory target + +# Sometime Cargo.lock causes merge bugs so ignore it +Cargo.lock + +# Temporary CI file versionfile.txt + +# IDE files .idea -Cargo.lock +.vscode + +# Apple specific +.DS_Store +.AppleDouble +.LSOverride From 9c5a1574eb0c1acb6014a79321a0a426d639bea6 Mon Sep 17 00:00:00 2001 From: Yuri Edward Date: Mon, 25 Sep 2023 22:48:42 +0200 Subject: [PATCH 3/3] Updated README --- .gitignore | 3 --- README.MD | 14 ++------------ 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index b4b1764..2a43937 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,6 @@ # Binary directory target -# Sometime Cargo.lock causes merge bugs so ignore it -Cargo.lock - # Temporary CI file versionfile.txt diff --git a/README.MD b/README.MD index 2f73fb7..9918fe1 100644 --- a/README.MD +++ b/README.MD @@ -1,13 +1,3 @@ -![logo](https://assets.gitlab-static.net/uploads/-/system/group/avatar/10553166/logo_white.ico?width=64) +![logo](https://avatars.githubusercontent.com/u/45798939?s=200&v=4) -# Rust threading library - -Features: -- Scoped thread pool. -- Unscoped thread pool. -- Thread pool with dynamic scheduler. -- Tasks can return output. -- Tasks can share immutable context (scoped thread pool). -- Tasks are given their dispatch index when called. -- Dispatch index is always guaranteed to match the order of calls to the dispatch function. -- Atomic cells +# Rust library template