gcrecomp-core 0.0.1-alpha

Static recompiler for GameCube games to Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "gcrecomp-core"
version = "0.0.1-alpha"
authors = ["Christopher Erleigh <christopher.erleigh@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Static recompiler for GameCube games to Rust"
homepage = "https://github.com/KaiserGranatapfel/GameCubeRecompiled"
documentation = "https://docs.rs/gcrecomp-core"
readme = false
keywords = [
    "gamecube",
    "recompiler",
    "powerpc",
    "rust",
    "emulation",
]
categories = [
    "development-tools",
    "emulators",
]
license = "CC0-1.0"
repository = "https://github.com/KaiserGranatapfel/GameCubeRecompiled"

[lib]
name = "gcrecomp_core"
path = "src/lib.rs"

[[test]]
name = "codegen_test"
path = "tests/codegen_test.rs"

[[test]]
name = "decoder_test"
path = "tests/decoder_test.rs"

[[test]]
name = "parser_test"
path = "tests/parser_test.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.bitvec]
version = "1.0"

[dependencies.goblin]
version = "0.8"

[dependencies.log]
version = "0.4"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.13"

[dependencies.thiserror]
version = "1.0"

[dependencies.which]
version = "5.0"

[dev-dependencies]