# 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 = "rstm-core" version = "0.0.4" authors = ["Joe McCain III "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "This crate focuses on building concrete implementations for Turing Machines." homepage = "https://github.com/FL03/rstm/wiki" readme = "README.md" keywords = [ "turing", "turing-machine", "utm", ] categories = [ "mathematics", "science", "simulation", ] license = "Apache-2.0" repository = "https://github.com/FL03/rstm.git" [package.metadata.docs.rs] all-features = true rustc-args = [ "--cfg", "docsrs", ] [lib] name = "rstm_core" crate-type = [ "cdylib", "rlib", ] path = "src/lib.rs" test = true doctest = false bench = true [[test]] name = "actor" path = "tests/actor.rs" required-features = ["alloc"] [[test]] name = "default" path = "tests/default.rs" [[test]] name = "rules" path = "tests/rules.rs" required-features = ["alloc"] [[test]] name = "state" path = "tests/state.rs" [[test]] name = "tape" path = "tests/tape.rs" required-features = ["alloc"] [dependencies.num] version = "0.4" [dependencies.paste] version = "1" [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.strum] version = "0.26" features = ["derive"] [dependencies.thiserror] version = "1" [dependencies.tracing] version = "0.1" features = [] optional = true [dev-dependencies.lazy_static] version = "1" [dev-dependencies.tracing-subscriber] version = "0.3" features = [] [features] alloc = [ "num/alloc", "serde?/alloc", ] default = ["std"] full = [ "default", "rand", "serde", "tracing", ] rand = ["num/rand"] serde = [ "dep:serde", "num/serde", ] std = [ "alloc", "serde?/std", "strum/std", ] tracing = ["dep:tracing"]