shape-cli 0.1.8

CLI and REPL for the Shape programming language
# 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 = "shape-cli"
version = "0.1.8"
authors = ["Daniel Amesberger"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI and REPL for the Shape programming language"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/shape-lang/shape"
resolver = "2"

[features]
default = ["jit"]
jit = ["shape-jit"]

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

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

[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]

[dependencies.ctrlc]
version = "3"

[dependencies.dirs]
version = "5.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.flate2]
version = "1"

[dependencies.hex]
version = "0.4"

[dependencies.image]
version = "0.25"

[dependencies.indicatif]
version = "0.17"

[dependencies.libloading]
version = "0.8"

[dependencies.once_cell]
version = "1.19"

[dependencies.ratatui]
version = "0.29"

[dependencies.regex]
version = "1.11"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "stream",
    "rustls-tls",
    "multipart",
]
default-features = false

[dependencies.rpassword]
version = "5"

[dependencies.rustyline]
version = "12.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.shape-ast]
version = "=0.1.8"

[dependencies.shape-jit]
version = "=0.1.8"
optional = true

[dependencies.shape-runtime]
version = "=0.1.8"

[dependencies.shape-viz-core]
version = "=0.1.1"

[dependencies.shape-vm]
version = "=0.1.8"

[dependencies.shape-wire]
version = "=0.1.8"

[dependencies.tar]
version = "0.4"

[dependencies.tempfile]
version = "3.24"

[dependencies.tokio]
version = "1.0"
features = ["full"]

[dependencies.toml]
version = "0.8"

[dependencies.tui-textarea]
version = "0.7"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.1"

[dev-dependencies.shape-wire]
version = "=0.1.8"

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