Skip to content

Commit

Permalink
Core: Update dependencies
Browse files Browse the repository at this point in the history
* Update Rust dependencies to their latest version in Rust Core,
  add-ons and Indexer CLI tool
* Update dependencies in Build CLI tool
  • Loading branch information
AmmarAbouZor committed Dec 3, 2024
1 parent d2f7f13 commit 0bbbd0a
Show file tree
Hide file tree
Showing 9 changed files with 490 additions and 401 deletions.
481 changes: 278 additions & 203 deletions application/apps/indexer/Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions application/apps/indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ members = [
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
lazy_static = "1.4"
thiserror = "2"
lazy_static = "1.5"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
dlt-core = "0.17"
Expand All @@ -34,8 +34,8 @@ rand = "0.8"
dirs = "5.0"
uuid = "1.3"
grep-searcher = "0.1"
tempfile = "3.10.0"
env_logger = "0.10"
tempfile = "3"
env_logger = "0.11"

## Development Dependencies ##
# Support for `html_reports` needs running the benchmarks via `cargo-criterion` tool.
Expand Down
2 changes: 1 addition & 1 deletion application/apps/indexer/indexer_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parsers = { path = "../parsers" }
processor = { path = "../processor" }
session = { path = "../session" }
structopt = "0.3"
rustyline = "11.0"
rustyline = "15.0"
sources = { path = "../sources" }
serde = { workspace = true , features = ["derive"] }
serde_json.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions application/apps/indexer/parsers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ version = "0.1.0"
edition = "2021"

[dependencies]
byteorder = "1.4"
byteorder = "1.5"
chrono = "0.4"
chrono-tz = "0.8"
chrono-tz = "0.10"
dlt-core.workspace = true
humantime = "2.1"
lazy_static.workspace = true
log.workspace = true
regex.workspace = true
memchr = "2.4"
memchr = "2.7"
serde = { workspace = true , features = ["derive"] }
thiserror.workspace = true
rand.workspace = true
Expand All @@ -21,4 +21,4 @@ someip-payload = { git = "https://github.com/esrlabs/someip-payload" }
someip-tools = { path = "../addons/someip-tools" }

[dev-dependencies]
stringreader = "0.1.1"
stringreader = "0.1"
4 changes: 2 additions & 2 deletions application/apps/indexer/processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ futures.workspace = true
grep-regex.workspace = true
grep-searcher.workspace = true
indexer_base = { path = "../indexer_base" }
itertools = "0.10.0"
itertools = "0.13"
lazy_static.workspace = true
log.workspace = true
parsers = { path = "../parsers" }
Expand All @@ -25,7 +25,7 @@ uuid = { workspace = true , features = ["serde", "v4"] }

[dev-dependencies]
criterion.workspace = true
pretty_assertions = "1.3"
pretty_assertions = "1.4"
rand.workspace = true
tempfile.workspace = true

Expand Down
10 changes: 5 additions & 5 deletions application/apps/indexer/session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["esrlabs.com"]
edition = "2021"

[dependencies]
blake3 = "1.3"
blake3 = "1.5"
crossbeam-channel.workspace = true
dirs.workspace = true
dlt-core = { workspace = true, features = ["statistics"] }
Expand All @@ -16,20 +16,20 @@ indexer_base = { path = "../indexer_base" }
lazy_static.workspace = true
log.workspace = true
merging = { path = "../merging" }
mime_guess = "2.0.4"
mime_guess = "2.0"
parsers = { path = "../parsers" }
processor = { path = "../processor" }
rustc-hash = "1.1"
rustc-hash = "2"
serde = { workspace = true , features = ["derive"] }
serde_json.workspace = true
serialport = "4.2.2"
serialport = "4.6"
sources = { path = "../sources" }
thiserror.workspace = true
tokio = { workspace = true , features = ["full"] }
tokio-stream.workspace = true
tokio-util.workspace = true
uuid = { workspace = true , features = ["serde", "v4"] }
walkdir = "2.3"
walkdir = "2.5"

[dev-dependencies]
lazy_static.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion application/apps/indexer/sources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = { workspace = true, features = ["derive"] }
uuid = { workspace = true , features = ["serde", "v4"] }
regex.workspace = true
lazy_static.workspace = true
shellexpand = "3.0.0"
shellexpand = "3.1.0"

[dev-dependencies]
env_logger.workspace = true
Expand Down
Loading

0 comments on commit 0bbbd0a

Please sign in to comment.