Fix versions in libafl and libafl_intelpt for crates.io (#2693)

* Fix versions in libafl and libafl_intelpt for crates

* Add libafl_intelpt to publish
This commit is contained in:
Andrea Fioraldi 2024-11-14 00:06:36 +01:00 committed by GitHub
parent d339a58f7c
commit b9cfcf0771
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -209,7 +209,7 @@ libafl_bolts = { version = "0.14.0", path = "../libafl_bolts", default-features
"alloc", "alloc",
] } ] }
libafl_derive = { version = "0.14.0", path = "../libafl_derive", optional = true } libafl_derive = { version = "0.14.0", path = "../libafl_derive", optional = true }
libafl_intelpt = { path = "../libafl_intelpt", optional = true } libafl_intelpt = { version = "0.14.0", path = "../libafl_intelpt", optional = true }
rustversion = { workspace = true } rustversion = { workspace = true }
tuple_list = { version = "0.1.3" } tuple_list = { version = "0.1.3" }

View File

@ -26,7 +26,7 @@ proc-maps = "0.4.0"
[dependencies] [dependencies]
arbitrary-int = { workspace = true } arbitrary-int = { workspace = true }
bitbybit = { workspace = true } bitbybit = { workspace = true }
libafl_bolts = { path = "../libafl_bolts", default-features = false } libafl_bolts = { version = "0.14.0", path = "../libafl_bolts", default-features = false }
libc = { workspace = true } libc = { workspace = true }
libipt = { workspace = true, optional = true } libipt = { workspace = true, optional = true }
log = { workspace = true } log = { workspace = true }

View File

@ -22,6 +22,12 @@ cd .. || exit 1
sleep 20 sleep 20
cd libafl_intelpt
cargo publish "$@"
cd .. || exit 1
sleep 20
cd libafl cd libafl
cargo publish "$@" cargo publish "$@"
cd .. || exit 1 cd .. || exit 1