fiddler-script 0.1.1

A minimal C-style scripting language interpreter
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 = "fiddler-script"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal C-style scripting language interpreter"
readme = "README.md"
license-file = "LICENSE"
resolver = "1"

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

[[example]]
name = "run"
path = "examples/run.rs"

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

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"

[dependencies.flate2]
version = "1"

[dependencies.indexmap]
version = "2"

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies]

[lints.clippy]
enum_glob_use = "deny"
unwrap_used = "warn"

[lints.rust]
missing-docs = "warn"
redundant-imports = "warn"
unsafe_code = "forbid"
unused-crate-dependencies = "warn"
unused-extern-crates = "warn"
unused-import-braces = "warn"