ouro 0.1.0

A golden test runner for language hackers
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 = "ouro"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A golden test runner for language hackers"
readme = "README.md"
keywords = [
    "testing",
    "golden",
    "compiler",
    "language",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/NickTomlin/ouro"

[features]
binary = [
    "clap",
    "parallel",
]
default = ["parallel"]
parallel = ["rayon"]

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

[[bin]]
name = "ouro"
path = "src/main.rs"
doc = false
required-features = ["binary"]

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

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.colored]
version = "3.0.0"

[dependencies.glob]
version = "0.3"

[dependencies.rayon]
version = "1.10"
optional = true

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

[dependencies.shlex]
version = "1.3.0"

[dependencies.similar]
version = "2.7.0"

[dependencies.toml]
version = "0.9.5"

[dev-dependencies.tempfile]
version = "3"