-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
9 changed files
with
183 additions
and
187 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "bin-lib" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
elf = "0.7.2" | ||
serde = { version = "1.0.160", features = ["derive"] } | ||
serde_json = "1.0.96" | ||
semver = "1.0.17" | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
serde_json = "1.0.105" | ||
semver = "1.0.18" | ||
|
||
[features] | ||
linux-install = [] |
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,17 +1,17 @@ | ||
[package] | ||
name = "elf-verify" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
description = "Command line tool for checking symbols in an exectuable" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
serde = "1.0.160" | ||
serde = "1.0.183" | ||
serde_json = "1.0.96" | ||
|
||
[dependencies.clap] | ||
version = "4.2.4" | ||
version = "4.3.23" | ||
features = ["derive"] | ||
|
||
[dependencies.bin-lib] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "fw-extract" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -9,14 +9,14 @@ description = "Firmware symbols data and extractor utility" | |
[dependencies] | ||
regex = "1" | ||
path-slash = "0.2.1" | ||
serde = "1.0.160" | ||
serde_json = "1.0.96" | ||
semver = "1.0.17" | ||
serde = "1.0.183" | ||
serde_json = "1.0.105" | ||
semver = "1.0.18" | ||
fw-lib = { path = "../../common/fw" } | ||
bin-lib = { path = "../../common/bin" } | ||
|
||
[dependencies.clap] | ||
version = "4.2.4" | ||
version = "4.3.23" | ||
features = ["derive"] | ||
|
||
[features] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "gen-manifest" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
description = "Command line tool for generating manifest for publish from an IPK file" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
|
@@ -9,11 +9,11 @@ license = "Apache-2.0" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
serde = { version = "1.0.160", features = ["derive"] } | ||
serde_json = "1.0.96" | ||
clap = { version = "4.2.4", features = ["derive"] } | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
serde_json = "1.0.105" | ||
clap = { version = "4.3.23", features = ["derive"] } | ||
ipk-lib = { path = "../../common/ipk" } | ||
sha256 = "1.1.3" | ||
sha256 = "1.3.0" | ||
|
||
[package.metadata.deb] | ||
name = "webosbrew-toolbox-gen-manifest" | ||
|
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,22 +1,22 @@ | ||
[package] | ||
name = "ipk-verify" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
edition = "2021" | ||
description = "Command line tool for checking symbols in an exectuable and libraries in an IPK file" | ||
authors = ["Mariotaku Lee <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
serde = "1.0.160" | ||
serde_json = "1.0.96" | ||
serde = "1.0.183" | ||
serde_json = "1.0.105" | ||
debpkg = "0.6.0" | ||
tempfile = "3.5.0" | ||
tempfile = "3.8.0" | ||
path-slash = "0.2.1" | ||
prettytable-rs = "^0.10" | ||
semver = "1.0.17" | ||
is-terminal = "0.4.7" | ||
semver = "1.0.18" | ||
is-terminal = "0.4.9" | ||
term = "0.7.0" | ||
clap = { version = "4.2.4", features = ["derive"] } | ||
clap = { version = "4.3.23", features = ["derive"] } | ||
verify-lib = { path = "../../common/verify", features = ["ipk"] } | ||
|
||
[dependencies.fw-lib] | ||
|