-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jeff Kim
committed
Apr 22, 2024
1 parent
75d7724
commit 05c5b95
Showing
7 changed files
with
82 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "rsbinder-tests" | ||
version = "0.2.3" | ||
edition = "2021" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
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" } | ||
tokio = { version = "1.37", features = ["full"] } | ||
env_logger = "0.11" | ||
nix = "0.28" | ||
async-trait = "0.1" | ||
lazy_static = { workspace = true } | ||
rsbinder = { workspace = true } | ||
tokio = { workspace = true } | ||
env_logger = { workspace = true } | ||
nix = { workspace = true } | ||
async-trait = { workspace = true } | ||
|
||
[build-dependencies] | ||
rsbinder-aidl = { version = "0.2.3", path = "../rsbinder-aidl" } | ||
rsbinder-aidl = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "rsbinder-tools" | ||
version = "0.2.3" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
description = "This provides a few CLI binder tools for Linux." | ||
homepage = "https://hiking90.github.io/rsbinder-book/" | ||
repository = "https://github.com/hiking90/rsbinder/rsbinder-tools" | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
readme = "README.md" | ||
|
||
# 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" } | ||
log = "0.4" | ||
env_logger = "0.11" | ||
nix = "0.28" | ||
anstyle = "1.0" | ||
lazy_static = { workspace = true } | ||
rsbinder = { workspace = true } | ||
log = { workspace = true } | ||
env_logger = { workspace = true } | ||
nix = { workspace = true } | ||
anstyle = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters