Hopefully fix rust crate publishing

This commit is contained in:
angie 2022-12-18 16:00:24 -03:00
parent 6e7b95d6ce
commit b87cf594fe
4 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@ extern "C" {
// Header version
#define RAB_VERSION_MAJOR 1
#define RAB_VERSION_MINOR 5
#define RAB_VERSION_PATCH 0
#define RAB_VERSION_PATCH 1
#define RAB_VERSION_STR RAB_STRINGIFY(RAB_VERSION_MAJOR) "." RAB_STRINGIFY(RAB_VERSION_MINOR) "." RAB_STRINGIFY(RAB_VERSION_PATCH)

View File

@ -4,7 +4,7 @@
[project]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.5.0"
version = "1.5.1"
description = "MIPS instruction decoder"
# license = "MIT"
readme = "README.md"

View File

@ -4,7 +4,7 @@
[package]
name = "rabbitizer"
# Version should be synced with include/common/RabbitizerVersion.h
version = "1.5.0"
version = "1.5.1"
edition = "2021"
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
description = "MIPS instruction decoder"

View File

@ -1,3 +1,4 @@
fn main() {
println!("cargo:rustc-link-search=../build/");
println!("cargo:rustc-link-search=build/");
}