From f5beb614e986cb3d831afa1898ebe866df8e3987 Mon Sep 17 00:00:00 2001 From: Benedikt Schwab Date: Mon, 5 Aug 2024 13:59:06 +0200 Subject: [PATCH] improved readme --- .github/workflows/ci.yml | 7 +++++++ Cargo.toml | 4 ++-- README.md | 3 +-- crates/egraphics-cli/Cargo.toml | 4 ++-- crates/egraphics-cli/README.md | 3 +-- crates/egraphics-core/README.md | 3 +-- crates/egraphics-io/Cargo.toml | 2 +- crates/egraphics-io/README.md | 3 +-- crates/egraphics/Cargo.toml | 4 ++-- crates/egraphics/README.md | 3 +-- 10 files changed, 19 insertions(+), 17 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 7d08fc8..d147f93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,14 +6,14 @@ 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/egraphics" [workspace.dependencies] -thiserror = "1.0.61" +thiserror = "1.0.63" tracing = "0.1.40" tracing-subscriber = "0.3.18" gltf = "1.4.1" diff --git a/README.md b/README.md index 176e230..3d79cae 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ A Rust library for processing graphics formats in 3D space. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/egraphics-cli/Cargo.toml b/crates/egraphics-cli/Cargo.toml index d6979bd..787ace3 100644 --- a/crates/egraphics-cli/Cargo.toml +++ b/crates/egraphics-cli/Cargo.toml @@ -8,8 +8,8 @@ repository.workspace = true description = "CLI tool for processing graphics formats in 3D space." [dependencies] -egraphics-core = { version = "0.0.1-alpha.3", path = "../egraphics-core" } -egraphics-io = { version = "0.0.1-alpha.3", path = "../egraphics-io" } +egraphics-core = { version = "0.0.1-alpha.4", path = "../egraphics-core" } +egraphics-io = { version = "0.0.1-alpha.4", path = "../egraphics-io" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/egraphics-cli/README.md b/crates/egraphics-cli/README.md index ba00c59..6c041e0 100644 --- a/crates/egraphics-cli/README.md +++ b/crates/egraphics-cli/README.md @@ -2,8 +2,7 @@ CLI tool for processing graphics formats in 3D space. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/egraphics-core/README.md b/crates/egraphics-core/README.md index 78275b8..899c605 100644 --- a/crates/egraphics-core/README.md +++ b/crates/egraphics-core/README.md @@ -2,8 +2,7 @@ Core primitives and operations for processing graphics formats in 3D space. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/egraphics-io/Cargo.toml b/crates/egraphics-io/Cargo.toml index 33ba8bd..a152598 100644 --- a/crates/egraphics-io/Cargo.toml +++ b/crates/egraphics-io/Cargo.toml @@ -8,7 +8,7 @@ repository.workspace = true description = "IO operations for processing graphics formats in 3D space." [dependencies] -egraphics-core = { version = "0.0.1-alpha.3", path = "../egraphics-core" } +egraphics-core = { version = "0.0.1-alpha.4", path = "../egraphics-core" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/crates/egraphics-io/README.md b/crates/egraphics-io/README.md index 1bec4fa..5f229f4 100644 --- a/crates/egraphics-io/README.md +++ b/crates/egraphics-io/README.md @@ -2,8 +2,7 @@ IO operations for processing graphics formats in 3D space. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing diff --git a/crates/egraphics/Cargo.toml b/crates/egraphics/Cargo.toml index a981903..f650e1e 100644 --- a/crates/egraphics/Cargo.toml +++ b/crates/egraphics/Cargo.toml @@ -9,5 +9,5 @@ description = "Library for processing graphics formats in 3D space." [dependencies] -egraphics-core = { version = "0.0.1-alpha.3", path = "../egraphics-core" } -egraphics-io = { version = "0.0.1-alpha.3", path = "../egraphics-io" } +egraphics-core = { version = "0.0.1-alpha.4", path = "../egraphics-core" } +egraphics-io = { version = "0.0.1-alpha.4", path = "../egraphics-io" } diff --git a/crates/egraphics/README.md b/crates/egraphics/README.md index af25bf8..ec844ef 100644 --- a/crates/egraphics/README.md +++ b/crates/egraphics/README.md @@ -2,8 +2,7 @@ Library for processing graphics formats in 3D space. -> [!WARNING] -> The library is at an early stage of development. +The library is at an early stage of development. ## Contributing