From 31758d2599e6fa387bf274ca1ce11ceae4340ecf Mon Sep 17 00:00:00 2001 From: Benedikt Schwab Date: Mon, 5 Aug 2024 15:25:44 +0200 Subject: [PATCH] improved readme --- .github/workflows/ci.yml | 7 +++++++ Cargo.toml | 8 ++++---- README.md | 3 +-- crates/emesh-cli/Cargo.toml | 2 +- crates/emesh-cli/README.md | 3 +-- crates/emesh-core/README.md | 3 +-- crates/emesh/Cargo.toml | 2 +- crates/emesh/README.md | 3 +-- 8 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c18a84..673000d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,13 @@ on: pull_request: {} +env: + CARGO_INCREMENTAL: 0 + CARGO_NET_RETRY: 10 + RUSTUP_MAX_RETRIES: 10 + RUST_BACKTRACE: short + + jobs: build: diff --git a/Cargo.toml b/Cargo.toml index 214638c..6f34eb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,17 +6,17 @@ members = [ resolver = "2" [workspace.package] -version = "0.0.1-alpha.3" +version = "0.0.1-alpha.4" authors = ["Benedikt Schwab "] edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/envis-space/emesh" [workspace.dependencies] -ecoord = { version = "0.0.1-alpha.3" } +ecoord = { version = "0.0.1-alpha.4" } -thiserror = "1.0.61" -clap = "4.5.9" +thiserror = "1.0.63" +clap = "4.5.13" tracing = "0.1.40" tracing-subscriber = "0.3.18" polars = "0.41.3" diff --git a/README.md b/README.md index 7a056c0..fbc4fcc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ A Rust library for processing 3D polygon meshes. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/emesh-cli/Cargo.toml b/crates/emesh-cli/Cargo.toml index fabc506..69e0144 100644 --- a/crates/emesh-cli/Cargo.toml +++ b/crates/emesh-cli/Cargo.toml @@ -9,7 +9,7 @@ description = "CLI tool for processing 3D polygon meshes." [dependencies] -emesh = { version = "0.0.1-alpha.3", path = "../emesh" } +emesh = { version = "0.0.1-alpha.4", path = "../emesh" } clap = { workspace = true, features = ["derive"] } tracing = { workspace = true } diff --git a/crates/emesh-cli/README.md b/crates/emesh-cli/README.md index bba2f7b..6e234e1 100644 --- a/crates/emesh-cli/README.md +++ b/crates/emesh-cli/README.md @@ -2,8 +2,7 @@ CLI tool for processing 3D polygon meshes. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/emesh-core/README.md b/crates/emesh-core/README.md index 0084abb..5614aa1 100644 --- a/crates/emesh-core/README.md +++ b/crates/emesh-core/README.md @@ -2,8 +2,7 @@ Core primitives and operations for processing 3D polygon meshes. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/emesh/Cargo.toml b/crates/emesh/Cargo.toml index a1b7ce4..ba88fea 100644 --- a/crates/emesh/Cargo.toml +++ b/crates/emesh/Cargo.toml @@ -9,5 +9,5 @@ description = "Library for processing 3D polygon meshes." [dependencies] -emesh-core = { version = "0.0.1-alpha.3", path = "../emesh-core" } +emesh-core = { version = "0.0.1-alpha.4", path = "../emesh-core" } diff --git a/crates/emesh/README.md b/crates/emesh/README.md index 036c55a..d1d0d51 100644 --- a/crates/emesh/README.md +++ b/crates/emesh/README.md @@ -2,8 +2,7 @@ Library for processing 3D polygon meshes. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing