mirror of
https://github.com/vee1e/lancelot.git
synced 2026-09-01 10:48:44 +00:00
v0.9.0
This commit is contained in:
parent
c3b58ddd63
commit
6da1633e41
9 changed files with 13 additions and 15 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
|
@ -67,4 +67,3 @@ jobs:
|
|||
pip install -U pip setuptools maturin pytest pefile
|
||||
maturin develop
|
||||
pytest
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ intel x86(-64) code analysis library that reconstructs control flow
|
|||
- make
|
||||
- cmake
|
||||
- pkg-config
|
||||
- protoc (on Windows)
|
||||
|
||||
Consider using [cranelift](https://github.com/rust-lang/rustc_codegen_cranelift) during development:
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <william.ballenthin@fireeye.com>"]
|
||||
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" }
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <william.ballenthin@mandiant.com>"]
|
||||
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"
|
||||
|
|
|
|||
|
|
@ -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 <william.ballenthin@mandiant.com>"]
|
||||
edition = "2021"
|
||||
homepage = "https://github.com/williballenthin/lancelot"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "python-flirt"
|
||||
version = "0.8.10"
|
||||
version = "0.9.0"
|
||||
authors = ["William Ballenthin <william.ballenthin@fireeye.com>"]
|
||||
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"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "python-flirt"
|
||||
version = "0.8.10"
|
||||
version = "0.9.0"
|
||||
description = "A Python library for parsing, compiling, and matching Fast Library Identification and Recognition Technology (FLIRT) signatures."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pylancelot"
|
||||
version = "0.8.10"
|
||||
version = "0.9.0"
|
||||
authors = ["Willi Ballenthin <william.ballenthin@mandiant.com>"]
|
||||
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"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[project]
|
||||
name = "python-lancelot"
|
||||
version = "0.8.10"
|
||||
version = "0.9.0"
|
||||
description = "Intel x86(-64) code analysis library that reconstructs control flow"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
requires-python = ">=3.9"
|
||||
license = {file = "LICENSE.txt"}
|
||||
keywords = ["flirt"]
|
||||
authors = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue