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 b73ff8b commit 2d0c2ba
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 25 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
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,37 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.1-alpha.3"
version = "0.0.1-alpha.4"
authors = ["Benedikt Schwab <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/envis-space/erosbag"

[workspace.dependencies]
epoint = { version = "0.0.1-alpha.3" }
eimage = { version = "0.0.1-alpha.3" }
ecoord = { version = "0.0.1-alpha.3" }
epoint = { version = "0.0.1-alpha.4" }
eimage = { version = "0.0.1-alpha.4" }
ecoord = { version = "0.0.1-alpha.4" }

clap = "4.5.9"
clap = "4.5.13"
dotenvy = "0.15.7"
walkdir = "2.5.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
diesel = "~2.1.6"
diesel_migrations = "~2.1.0"
diesel = "~2.2.2"
diesel_migrations = "~2.2.0"
r2d2 = "0.8.10"
serde = "1.0.204"
serde_derive = "1.0.204"
serde_repr = "0.1.19"
serde_yaml = "0.9.34"
serde-big-array = "0.5.1"
cdr = "0.2.4"
thiserror = "1.0.61"
thiserror = "1.0.63"
polars = "0.41.3"
ndarray = "0.15.6"
indextree = "4.6.1"
ndarray = "0.16.0"
indextree = "4.7.0"
rayon = "1.10.0"
nalgebra = "0.33.0"
chrono = "0.4.38"
itertools = "0.13.0"
image = "0.25.1"
image = "0.25.2"
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 ROS2 bags.

> [!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/erosbag-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "CLI tool for processing ROS2 bags."


[dependencies]
erosbag = { version = "0.0.1-alpha.3", path = "../erosbag" }
erosbag = { version = "0.0.1-alpha.4", path = "../erosbag" }
ecoord = { workspace = true }
epoint = { workspace = true }
eimage = { workspace = true }
Expand Down
3 changes: 1 addition & 2 deletions crates/erosbag-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

CLI tool for processing ROS2 bags.

> [!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/erosbag-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 ROS2 bags.

> [!WARNING]
> The library is at an early stage of development.
The library is at an early stage of development.

## Setting up Diesel

Expand Down
2 changes: 1 addition & 1 deletion crates/erosbag-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository.workspace = true
description = "Supplementary operations for processing ROS2 bags."

[dependencies]
erosbag-core = { version = "0.0.1-alpha.3", path = "../erosbag-core" }
erosbag-core = { version = "0.0.1-alpha.4", path = "../erosbag-core" }

epoint = { workspace = true }
ecoord = { workspace = true }
Expand Down
3 changes: 1 addition & 2 deletions crates/erosbag-transform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

Supplementary operations for processing ROS2 bags.

> [!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/erosbag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ description = "Library for processing ROS2 bags."


[dependencies]
erosbag-core = { version = "0.0.1-alpha.3", path = "../erosbag-core" }
erosbag-transform = { version = "0.0.1-alpha.3", path = "../erosbag-transform" }
erosbag-core = { version = "0.0.1-alpha.4", path = "../erosbag-core" }
erosbag-transform = { version = "0.0.1-alpha.4", path = "../erosbag-transform" }
3 changes: 1 addition & 2 deletions crates/erosbag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

Library for processing ROS2 bags.

> [!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 2d0c2ba

Please sign in to comment.