-
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
Sep 10, 2024
1 parent
051db35
commit 01da9fc
Showing
4 changed files
with
82 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ members = [ | |
version = "0.3.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Jeff Kim <[email protected]>"] | ||
homepage = "https://hiking90.github.io/rsbinder-book/" | ||
repository = "https://github.com/hiking90/rsbinder" | ||
rust-version = "1.71" | ||
|
@@ -34,4 +35,5 @@ tera = "1.19" | |
similar = "2.4" | ||
pretty_hex = { version = "0.4", package = "pretty-hex" } | ||
downcast-rs = "1.2" | ||
rustix = "0.38" | ||
rustix = "0.38" | ||
clap = "4.5" |
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,20 @@ | ||
[package] | ||
name = "rsbinder-tools" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
version.workspace = true | ||
edition.workspace = true | ||
license.workspace = true | ||
authors.workspace = true | ||
description = "This provides a few CLI binder tools for Linux." | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
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 = { workspace = true } | ||
rsbinder = { workspace = true } | ||
log = { workspace = true } | ||
env_logger = { workspace = true } | ||
anstyle = { workspace = true } | ||
lazy_static.workspace = true | ||
rsbinder.workspace = true | ||
log.workspace = true | ||
env_logger.workspace = true | ||
anstyle.workspace = true | ||
clap.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