From 93a0b2d2ac1641ba039ec3bdd8fe32d109231eef Mon Sep 17 00:00:00 2001 From: Benedikt Schwab Date: Mon, 5 Aug 2024 15:23:09 +0200 Subject: [PATCH] improved readme --- .github/workflows/ci.yml | 7 +++++++ Cargo.toml | 14 +++++++------- README.md | 3 +-- crates/evoxel-cli/Cargo.toml | 4 ++-- crates/evoxel-cli/README.md | 3 +-- crates/evoxel-core/README.md | 3 +-- crates/evoxel-io/Cargo.toml | 2 +- crates/evoxel-io/README.md | 3 +-- crates/evoxel-transform/Cargo.toml | 2 +- crates/evoxel-transform/README.md | 3 +-- crates/evoxel/Cargo.toml | 6 +++--- crates/evoxel/README.md | 3 +-- 12 files changed, 27 insertions(+), 26 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 f73c19e..0988d48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,23 +6,23 @@ 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/tum-gis/evoxel" +repository = "https://github.com/envis-space/evoxel" [workspace.dependencies] -ecoord = { version = "0.0.1-alpha.3" } +ecoord = { version = "0.0.1-alpha.4" } -clap = "4.5.9" -thiserror = "1.0.61" +clap = "4.5.13" +thiserror = "1.0.63" tracing = "0.1.40" tracing-subscriber = "0.3.18" polars = "0.41.3" -ndarray = "0.15.6" +ndarray = "0.16.0" serde = "1.0.204" -serde_json = "1.0.120" +serde_json = "1.0.122" rayon = "1.10.0" nalgebra = "0.33.0" chrono = "0.4.38" diff --git a/README.md b/README.md index f846fb3..ab6c9e0 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ A Rust library for processing 3D voxel grids. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/evoxel-cli/Cargo.toml b/crates/evoxel-cli/Cargo.toml index ceb77c1..68f4507 100644 --- a/crates/evoxel-cli/Cargo.toml +++ b/crates/evoxel-cli/Cargo.toml @@ -5,11 +5,11 @@ authors.workspace = true edition.workspace = true license.workspace = true repository.workspace = true -description = "CLI tool for evoxel operations" +description = "CLI tool for processing 3D voxel grids." [dependencies] -evoxel = { version = "0.0.1-alpha.3", path = "../evoxel" } +evoxel = { version = "0.0.1-alpha.4", path = "../evoxel" } clap = { workspace = true, features = ["derive"] } tracing = { workspace = true } diff --git a/crates/evoxel-cli/README.md b/crates/evoxel-cli/README.md index f4b6ba2..16e7eea 100644 --- a/crates/evoxel-cli/README.md +++ b/crates/evoxel-cli/README.md @@ -2,8 +2,7 @@ CLI tool for processing 3D voxel grids. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/evoxel-core/README.md b/crates/evoxel-core/README.md index 1ae543f..1648df2 100644 --- a/crates/evoxel-core/README.md +++ b/crates/evoxel-core/README.md @@ -2,8 +2,7 @@ Core primitives and operations for processing 3D voxel grids. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/evoxel-io/Cargo.toml b/crates/evoxel-io/Cargo.toml index 2e9183d..a21178b 100644 --- a/crates/evoxel-io/Cargo.toml +++ b/crates/evoxel-io/Cargo.toml @@ -9,7 +9,7 @@ description = "IO operations for processing 3D voxel grids." [dependencies] -evoxel-core = { version = "0.0.1-alpha.3", path = "../evoxel-core" } +evoxel-core = { version = "0.0.1-alpha.4", path = "../evoxel-core" } ecoord = { workspace = true } diff --git a/crates/evoxel-io/README.md b/crates/evoxel-io/README.md index c79c2fc..84ebb54 100644 --- a/crates/evoxel-io/README.md +++ b/crates/evoxel-io/README.md @@ -2,8 +2,7 @@ IO operations for processing 3D voxel grids. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/evoxel-transform/Cargo.toml b/crates/evoxel-transform/Cargo.toml index 663842f..00fd850 100644 --- a/crates/evoxel-transform/Cargo.toml +++ b/crates/evoxel-transform/Cargo.toml @@ -9,7 +9,7 @@ description = "Supplementary operations for processing 3D voxel grids." [dependencies] -evoxel-core = { version = "0.0.1-alpha.3", path = "../evoxel-core" } +evoxel-core = { version = "0.0.1-alpha.4", path = "../evoxel-core" } ecoord = { workspace = true } diff --git a/crates/evoxel-transform/README.md b/crates/evoxel-transform/README.md index 9834695..ecf83b2 100644 --- a/crates/evoxel-transform/README.md +++ b/crates/evoxel-transform/README.md @@ -2,8 +2,7 @@ Supplementary operations for processing 3D voxel grids. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/evoxel/Cargo.toml b/crates/evoxel/Cargo.toml index 061b1bb..3e9e2fd 100644 --- a/crates/evoxel/Cargo.toml +++ b/crates/evoxel/Cargo.toml @@ -9,6 +9,6 @@ description = "Library for processing 3D point clouds." [dependencies] -evoxel-core = { version = "0.0.1-alpha.3", path = "../evoxel-core" } -evoxel-io = { version = "0.0.1-alpha.3", path = "../evoxel-io" } -evoxel-transform = { version = "0.0.1-alpha.3", path = "../evoxel-transform" } +evoxel-core = { version = "0.0.1-alpha.4", path = "../evoxel-core" } +evoxel-io = { version = "0.0.1-alpha.4", path = "../evoxel-io" } +evoxel-transform = { version = "0.0.1-alpha.4", path = "../evoxel-transform" } diff --git a/crates/evoxel/README.md b/crates/evoxel/README.md index fc45d35..ead47b4 100644 --- a/crates/evoxel/README.md +++ b/crates/evoxel/README.md @@ -2,8 +2,7 @@ Library for processing 3D point clouds. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing