Skip to content

Commit

Permalink
improved readme
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed Aug 5, 2024
1 parent 2f3b1bf commit 93a0b2d
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 26 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ on:
pull_request: {}


env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
RUST_BACKTRACE: short


jobs:

build:
Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.1-alpha.3"
version = "0.0.1-alpha.4"
authors = ["Benedikt Schwab <benedikt.schwab@gmail.com>"]
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"
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions crates/evoxel-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
3 changes: 1 addition & 2 deletions crates/evoxel-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions crates/evoxel-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/evoxel-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
3 changes: 1 addition & 2 deletions crates/evoxel-io/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/evoxel-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
3 changes: 1 addition & 2 deletions crates/evoxel-transform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions crates/evoxel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
3 changes: 1 addition & 2 deletions crates/evoxel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 93a0b2d

Please sign in to comment.