Skip to content

Commit

Permalink
Release v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Kim committed Sep 30, 2024
1 parent 85d3c99 commit 011d51e
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 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 example-hello/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example-hello"
version = "0.2.3"
version = "0.2.4"
publish = false
edition = "2021"

Expand All @@ -12,9 +12,9 @@ async = ["rsbinder/async", "rsbinder-aidl/async"]

[dependencies]
lazy_static = "1.4"
rsbinder = { version = "0.2.3", path = "../rsbinder", default-features = false }
rsbinder = { version = "0.2.4", path = "../rsbinder", default-features = false }
env_logger = "0.11"
async-trait = "0.1"

[build-dependencies]
rsbinder-aidl = { version = "0.2.3", path = "../rsbinder-aidl", default-features = false }
rsbinder-aidl = { version = "0.2.4", path = "../rsbinder-aidl", default-features = false }
2 changes: 1 addition & 1 deletion rsbinder-aidl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsbinder-aidl"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
description = "This is a AIDL compiler for rsbinder."
Expand Down
6 changes: 3 additions & 3 deletions rsbinder-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "rsbinder-tests"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
publish = false

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
lazy_static = "1.4"
rsbinder = { version = "0.2.3", path = "../rsbinder" }
rsbinder = { version = "0.2.4", path = "../rsbinder" }
tokio = { version = "1.36", features = ["full"] }
env_logger = "0.11"
nix = "0.28"
async-trait = "0.1"

[build-dependencies]
rsbinder-aidl = { version = "0.2.3", path = "../rsbinder-aidl" }
rsbinder-aidl = { version = "0.2.4", path = "../rsbinder-aidl" }
4 changes: 2 additions & 2 deletions rsbinder-tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsbinder-tools"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
description = "This provides a few CLI binder tools for Linux."
Expand All @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
lazy_static = "1.4"
rsbinder = { version = "0.2.3", path = "../rsbinder" }
rsbinder = { version = "0.2.4", path = "../rsbinder" }
log = "0.4"
env_logger = "0.11"
nix = "0.28"
Expand Down
4 changes: 2 additions & 2 deletions rsbinder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsbinder"
version = "0.2.3"
version = "0.2.4"
edition = "2021"
license = "Apache-2.0"
description = "This is a library for Linux Binder communication."
Expand All @@ -27,7 +27,7 @@ lazy_static = "1.4"
tokio = { version = "1.35", optional = true, default-features = false }

[build-dependencies]
rsbinder-aidl = { version = "0.2.3", path = "../rsbinder-aidl", default-features = false }
rsbinder-aidl = { version = "0.2.4", path = "../rsbinder-aidl", default-features = false }

[dev-dependencies]
env_logger = "0.11"

0 comments on commit 011d51e

Please sign in to comment.