Skip to content

Commit 2d0c2ba

Browse files
improved readme
1 parent b73ff8b commit 2d0c2ba

File tree

10 files changed

+27
-25
lines changed

10 files changed

+27
-25
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ on:
88
pull_request: {}
99

1010

11+
env:
12+
CARGO_INCREMENTAL: 0
13+
CARGO_NET_RETRY: 10
14+
RUSTUP_MAX_RETRIES: 10
15+
RUST_BACKTRACE: short
16+
17+
1118
jobs:
1219

1320
build:

Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,37 @@ members = [
66
resolver = "2"
77

88
[workspace.package]
9-
version = "0.0.1-alpha.3"
9+
version = "0.0.1-alpha.4"
1010
authors = ["Benedikt Schwab <benedikt.schwab@gmail.com>"]
1111
edition = "2021"
1212
license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/envis-space/erosbag"
1414

1515
[workspace.dependencies]
16-
epoint = { version = "0.0.1-alpha.3" }
17-
eimage = { version = "0.0.1-alpha.3" }
18-
ecoord = { version = "0.0.1-alpha.3" }
16+
epoint = { version = "0.0.1-alpha.4" }
17+
eimage = { version = "0.0.1-alpha.4" }
18+
ecoord = { version = "0.0.1-alpha.4" }
1919

20-
clap = "4.5.9"
20+
clap = "4.5.13"
2121
dotenvy = "0.15.7"
2222
walkdir = "2.5.0"
2323
tracing = "0.1.40"
2424
tracing-subscriber = "0.3.18"
25-
diesel = "~2.1.6"
26-
diesel_migrations = "~2.1.0"
25+
diesel = "~2.2.2"
26+
diesel_migrations = "~2.2.0"
2727
r2d2 = "0.8.10"
2828
serde = "1.0.204"
2929
serde_derive = "1.0.204"
3030
serde_repr = "0.1.19"
3131
serde_yaml = "0.9.34"
3232
serde-big-array = "0.5.1"
3333
cdr = "0.2.4"
34-
thiserror = "1.0.61"
34+
thiserror = "1.0.63"
3535
polars = "0.41.3"
36-
ndarray = "0.15.6"
37-
indextree = "4.6.1"
36+
ndarray = "0.16.0"
37+
indextree = "4.7.0"
3838
rayon = "1.10.0"
3939
nalgebra = "0.33.0"
4040
chrono = "0.4.38"
4141
itertools = "0.13.0"
42-
image = "0.25.1"
42+
image = "0.25.2"

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
A Rust library for processing ROS2 bags.
44

5-
> [!WARNING]
6-
> The library is at an early stage of development.
5+
The library is at an early stage of development.
76

87
## Contributing
98

crates/erosbag-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "CLI tool for processing ROS2 bags."
99

1010

1111
[dependencies]
12-
erosbag = { version = "0.0.1-alpha.3", path = "../erosbag" }
12+
erosbag = { version = "0.0.1-alpha.4", path = "../erosbag" }
1313
ecoord = { workspace = true }
1414
epoint = { workspace = true }
1515
eimage = { workspace = true }

crates/erosbag-cli/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
CLI tool for processing ROS2 bags.
44

5-
> [!WARNING]
6-
> The library is at an early stage of development.
5+
The library is at an early stage of development.
76

87
## Contributing
98

crates/erosbag-core/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Core primitives and operations for processing ROS2 bags.
44

5-
> [!WARNING]
6-
> The library is at an early stage of development.
5+
The library is at an early stage of development.
76

87
## Setting up Diesel
98

crates/erosbag-transform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository.workspace = true
88
description = "Supplementary operations for processing ROS2 bags."
99

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

1313
epoint = { workspace = true }
1414
ecoord = { workspace = true }

crates/erosbag-transform/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Supplementary operations for processing ROS2 bags.
44

5-
> [!WARNING]
6-
> The library is at an early stage of development.
5+
The library is at an early stage of development.
76

87
## Contributing
98

crates/erosbag/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ description = "Library for processing ROS2 bags."
99

1010

1111
[dependencies]
12-
erosbag-core = { version = "0.0.1-alpha.3", path = "../erosbag-core" }
13-
erosbag-transform = { version = "0.0.1-alpha.3", path = "../erosbag-transform" }
12+
erosbag-core = { version = "0.0.1-alpha.4", path = "../erosbag-core" }
13+
erosbag-transform = { version = "0.0.1-alpha.4", path = "../erosbag-transform" }

crates/erosbag/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Library for processing ROS2 bags.
44

5-
> [!WARNING]
6-
> The library is at an early stage of development.
5+
The library is at an early stage of development.
76

87
## Contributing
98

0 commit comments

Comments
 (0)