mirror of
https://github.com/Decompollaborate/rabbitizer.git
synced 2024-12-28 06:19:43 +00:00
fb8c1edbd7
* Generate bindings for enums * Add .gitignore Cargo didn't automatically made * Actually build the files into the library * `pub` in `mod` to fix warning * instruction struct * Instruction rust binding * Add InstrId::ALL_MAX * link C library to rust * Publish crate CI * test * config bindings * add getters for registers * add names methods for register enums * get_operand_type * feedback from simon * Forgot to add new file to python setup.py * get_operands_slice * add stuff to cargo.toml
21 lines
602 B
TOML
21 lines
602 B
TOML
[package]
|
|
name = "rabbitizer"
|
|
# Version should be synced with include/common/RabbitizerVersion.h
|
|
version = "1.4.0"
|
|
edition = "2021"
|
|
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
|
description = "MIPS instruction decoder"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/Decompollaborate/rabbitizer"
|
|
repository = "https://github.com/Decompollaborate/rabbitizer"
|
|
license = "MIT"
|
|
keywords = ["MIPS", "decoder"]
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
cty = "0.2.2"
|
|
libc = "0.2.138"
|
|
num_enum = "0.5.7"
|