-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
c3b58dd
commit 6da1633
Showing
9 changed files
with
13 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,3 @@ jobs: | |
pip install -U pip setuptools maturin pytest pefile | ||
maturin develop | ||
pytest | ||
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,6 +1,6 @@ | ||
[package] | ||
name = "lancelot-bin" | ||
version = "0.8.10" | ||
version = "0.9.0" | ||
description = "binary analysis tools for x32/x64 PE files" | ||
authors = ["William Ballenthin <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -28,6 +28,6 @@ hex = "0.4" | |
serde_json = "1.0" | ||
sha256 = "1" | ||
|
||
lancelot = { path = "../core", version = "0.8.10" } | ||
lancelot-flirt = { path = "../flirt", version = "0.8.10" } | ||
lancelot = { path = "../core", version = "0.9.0" } | ||
lancelot-flirt = { path = "../flirt", version = "0.9.0" } | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "lancelot" | ||
description = "binary analysis framework for x32/x64 PE files" | ||
license = "Apache-2.0" | ||
version = "0.8.10" | ||
version = "0.9.0" | ||
authors = ["Willi Ballenthin <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/williballenthin/lancelot" | ||
|
@@ -36,7 +36,7 @@ fern = { version = "0.7", optional = true } | |
bitvec = { version = "1" } | ||
|
||
# needed for flirt | ||
lancelot-flirt = { path = "../flirt", version = "0.8.10", optional = true} | ||
lancelot-flirt = { path = "../flirt", version = "0.9.0", optional = true} | ||
|
||
# needed for binexport2 | ||
prost = "0.13" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "lancelot-flirt" | ||
description = "parse and match FLIRT signatures" | ||
license = "Apache-2.0" | ||
version = "0.8.10" | ||
version = "0.9.0" | ||
authors = ["Willi Ballenthin <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/williballenthin/lancelot" | ||
|
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 = "python-flirt" | ||
version = "0.8.10" | ||
version = "0.9.0" | ||
authors = ["William Ballenthin <[email protected]>"] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
@@ -13,7 +13,7 @@ name = "flirt" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
lancelot-flirt = { path = "../flirt", version = "0.8.10" } | ||
lancelot-flirt = { path = "../flirt", version = "0.9.0" } | ||
pyo3 = { version = "0.22"} | ||
anyhow = "1" | ||
|
||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "pylancelot" | ||
version = "0.8.10" | ||
version = "0.9.0" | ||
authors = ["Willi Ballenthin <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/williballenthin/lancelot" | ||
|
@@ -11,7 +11,7 @@ name = "lancelot" | |
crate-type = ["cdylib"] | ||
|
||
[dependencies] | ||
lancelot = { path = "../core", version = "0.8.10" } | ||
lancelot = { path = "../core", version = "0.9.0" } | ||
pyo3 = { version = "0.22" } | ||
pyo3-log = "0.11" | ||
anyhow = "1" | ||
|
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