thinkinglanguage 0.1.0

CLI entry point for ThinkingLanguage (tl run, tl shell)
# 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 = "thinkinglanguage"
version = "0.1.0"
authors = ["Mallesh Madapathi <mallesh@thinkingdbx.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI entry point for ThinkingLanguage (tl run, tl shell)"
homepage = "https://github.com/mplusm/thinkinglanguage"
readme = "README.md"
keywords = [
    "data-engineering",
    "language",
    "ai",
    "pipeline",
    "etl",
]
categories = [
    "compilers",
    "development-tools",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mplusm/thinkinglanguage"
resolver = "2"

[features]
async-runtime = [
    "tl-compiler/async-runtime",
    "tl-interpreter/async-runtime",
]
gpu = ["tl-compiler/gpu"]
kafka = ["tl-stream/kafka"]
mysql = [
    "tl-compiler/mysql",
    "tl-interpreter/mysql",
]
notebook = [
    "dep:ratatui",
    "dep:crossterm",
]
python = [
    "tl-compiler/python",
    "tl-interpreter/python",
]
redis = [
    "tl-compiler/redis",
    "tl-interpreter/redis",
]
registry = ["tl-package/registry"]
s3 = [
    "tl-compiler/s3",
    "tl-interpreter/s3",
]
sqlite = [
    "tl-compiler/sqlite",
    "tl-interpreter/sqlite",
]

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

[dependencies.chrono]
version = "0.4"

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

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.rustyline]
version = "15"

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

[dependencies.serde_json]
version = "1"

[dependencies.tl-ai]
version = "0.1.0"

[dependencies.tl-ast]
version = "0.1.0"

[dependencies.tl-compiler]
version = "0.1.0"

[dependencies.tl-errors]
version = "0.1.0"

[dependencies.tl-interpreter]
version = "0.1.0"

[dependencies.tl-lexer]
version = "0.1.0"

[dependencies.tl-lsp]
version = "0.1.0"

[dependencies.tl-package]
version = "0.1.0"

[dependencies.tl-parser]
version = "0.1.0"

[dependencies.tl-stream]
version = "0.1.0"

[dependencies.tl-types]
version = "0.1.0"
package = "thinkinglanguage-types"

[dependencies.toml]
version = "0.8"

[dependencies.toml_edit]
version = "0.22"

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