2023-02-23 14:08:52 +00:00
|
|
|
# SPDX-FileCopyrightText: © 2022-2023 Decompollaborate
|
2022-12-18 18:33:02 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2022-12-18 18:15:39 +00:00
|
|
|
[package]
|
|
|
|
name = "rabbitizer"
|
|
|
|
# Version should be synced with include/common/RabbitizerVersion.h
|
2023-12-25 18:07:58 +00:00
|
|
|
version = "1.8.1"
|
2022-12-18 18:15:39 +00:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Anghelo Carvajal <angheloalf95@gmail.com>"]
|
|
|
|
description = "MIPS instruction decoder"
|
2022-12-18 22:43:40 +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"]
|
2022-12-18 22:43:40 +00:00
|
|
|
build = "rust/build.rs"
|
2023-06-10 14:20:16 +00:00
|
|
|
include = ["/rust/src", "/rust/build.rs", "/src", "/include", "/tables"]
|
2022-12-18 18:15:39 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-12-18 22:43:40 +00:00
|
|
|
[lib]
|
|
|
|
path = "rust/src/lib.rs"
|
|
|
|
|
2022-12-18 18:15:39 +00:00
|
|
|
[dependencies]
|
|
|
|
num_enum = "0.5.7"
|
2022-12-18 20:12:59 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0.78"
|
|
|
|
glob = "0.3.0"
|