2022-12-18 18:33:02 +00:00
|
|
|
# SPDX-FileCopyrightText: © 2022 Decompollaborate
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2022-12-18 18:15:39 +00:00
|
|
|
[package]
|
|
|
|
name = "rabbitizer"
|
|
|
|
# Version should be synced with include/common/RabbitizerVersion.h
|
2022-12-18 20:12:59 +00:00
|
|
|
version = "1.5.4"
|
2022-12-18 18:15:39 +00:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
|
|
|
description = "MIPS instruction decoder"
|
2022-12-18 20:12:59 +00:00
|
|
|
readme = "../README.md"
|
2022-12-18 18:15:39 +00:00
|
|
|
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"
|
2022-12-18 20:12:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0.78"
|
|
|
|
glob = "0.3.0"
|