Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ resolver = "3"
members = ["dlt-sys", "dlt-rs", "tracing-dlt", "integration-tests"]

[workspace.dependencies]
tracing-dlt = { path = "tracing-dlt" }
dlt-sys = { path = "dlt-sys", version = "0.1.0" }
dlt-rs = { path = "dlt-rs", version = "0.1.0" }
tracing-dlt = { path = "tracing-dlt", version = "0.1.1" }
dlt-sys = { path = "dlt-sys", version = "0.1.1" }
dlt-rs = { path = "dlt-rs", version = "0.1.1" }
integration-tests = { path = "integration-tests" }

# ---- common crates ----
Expand Down
4 changes: 2 additions & 2 deletions dlt-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[package]
name = "dlt-rs"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
publish = true
description = "Safe and idiomatic Rust wrapper for the C library libdlt to provide DLT logging capabilities for Rust applications"
Expand All @@ -25,7 +25,7 @@ workspace = true
path = "src/lib.rs"

[dependencies]
dlt-sys = { workspace = true, version = "0.1.0" }
dlt-sys = { workspace = true, version = "0.1.1" }

# external
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion dlt-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[package]
name = "dlt-sys"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
publish = true
description = "FFI bindings to libdlt"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[package]
name = "integration-tests"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
publish = false
description = "Common test utilities for DLT tracing integration tests"
Expand Down
4 changes: 2 additions & 2 deletions tracing-dlt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

[package]
name = "tracing-dlt"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
publish = true
description = "DLT log sink for the tracing ecosystem"
Expand All @@ -26,7 +26,7 @@ path = "src/lib.rs"

[dependencies]
# internal dependencies
dlt-rs = { workspace = true, version = "0.1.0" }
dlt-rs = { workspace = true, version = "0.1.1" }

# external
tokio = { workspace = true }
Expand Down
Loading