m68k 0.9.0

A safe Rust M68000 family CPU emulator
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 = "2024"
rust-version = "1.93"
name = "m68k"
version = "0.9.0"
build = false
exclude = [
    "/.github/**",
    "/.gitignore",
    "/.gitmodules",
    "/.release-please-manifest.json",
    "/CONTRIBUTING.md",
    "/committed.toml",
    "/release-please-config.json",
    "/rust-toolchain.toml",
    "/scripts/**",
    "/tests/**",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A safe Rust M68000 family CPU emulator"
readme = "README.md"
keywords = [
    "68000",
    "emulation",
    "m68k",
    "motorola",
]
categories = ["emulators"]
license = "MIT"
repository = "https://github.com/benletchford/m68k-rs"

[features]
default = []
jit = [
    "dep:cranelift-codegen",
    "dep:cranelift-frontend",
    "dep:cranelift-jit",
    "dep:cranelift-module",
]
serde = ["dep:serde"]
trace-profile = []

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

[[bin]]
name = "m68k"
path = "src/main.rs"

[[bench]]
name = "microbench"
path = "benches/microbench.rs"
harness = false

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

[dev-dependencies.astro-float]
version = "0.9"
features = ["std"]
default-features = false

[dev-dependencies.serde_json]
version = "1.0"

[target.'cfg(not(target_family = "wasm"))'.dependencies.cranelift-codegen]
version = "0.132.0"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dependencies.cranelift-frontend]
version = "0.132.0"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dependencies.cranelift-jit]
version = "0.132.0"
optional = true

[target.'cfg(not(target_family = "wasm"))'.dependencies.cranelift-module]
version = "0.132.0"
optional = true