fauxrest 0.0.5

A CLI tool for generating static JSON APIs from local data files
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"
name = "fauxrest"
version = "0.0.5"
authors = ["Haruaki Tamada <tamada@users.noreply.github.com>"]
build = false
exclude = [
    "testdata/",
    "docs/",
    ".github/",
    ".vscode/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for generating static JSON APIs from local data files"
readme = "README.md"
keywords = [
    "rest-api",
    "pseudo-rest-api",
]
categories = [
    "command-line-utilities",
    "filesystem",
]
license-file = "LICENSE"
repository = "https://github.com/tamada/fauxrest"

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

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

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

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

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

[dependencies.clap]
version = "4.6"
features = ["derive"]

[dependencies.clap_complete]
version = "4.6.7"

[dependencies.globset]
version = "0.4"

[dependencies.regex]
version = "1"

[dependencies.rusqlite]
version = "0.40"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.tempfile]
version = "3"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.rusqlite]
version = "0.40"
features = ["bundled"]