[package]
edition = "2024"
name = "tl-compiler"
version = "0.3.7"
authors = ["Mallesh Madapathi <mallesh@thinkingdbx.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bytecode compiler and VM for ThinkingLanguage (Phase 2)"
homepage = "https://github.com/mplusm/thinkinglanguage"
readme = "README.md"
keywords = [
"data-engineering",
"language",
"ai",
"pipeline",
"etl",
]
categories = [
"compilers",
"development-tools",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/mplusm/thinkinglanguage"
resolver = "2"
[features]
async-runtime = ["tokio"]
bigquery = ["tl-data/bigquery"]
clickhouse = ["tl-data/clickhouse"]
databricks = ["tl-data/databricks"]
default = ["native"]
duckdb = ["tl-data/duckdb"]
gpu = [
"dep:tl-gpu",
"native",
]
iceberg = ["tl-data/iceberg"]
mcp = ["dep:tl-mcp"]
mongodb = ["tl-data/mongodb"]
mssql = ["tl-data/mssql"]
mysql = ["tl-data/mysql"]
native = [
"dep:tl-data",
"dep:tl-ai",
"dep:tl-stream",
"dep:tl-package",
"dep:cranelift-codegen",
"dep:cranelift-frontend",
"dep:cranelift-jit",
"dep:cranelift-module",
"dep:target-lexicon",
"dep:rayon",
"dep:reqwest",
"dep:rand",
]
python = [
"pyo3",
"arrow-ipc",
"arrow-array",
"arrow-schema",
]
redis = ["tl-data/redis"]
s3 = ["tl-data/s3"]
sftp = ["tl-data/sftp"]
snowflake = ["tl-data/snowflake"]
sqlite = ["tl-data/sqlite"]
[lib]
name = "tl_compiler"
path = "src/lib.rs"
[[test]]
name = "ai_vm_integration"
path = "tests/ai_vm_integration.rs"
[[test]]
name = "phase13_integration"
path = "tests/phase13_integration.rs"
[[test]]
name = "phase15_integration"
path = "tests/phase15_integration.rs"
[[test]]
name = "phase22_integration"
path = "tests/phase22_integration.rs"
[[test]]
name = "phase23_integration"
path = "tests/phase23_integration.rs"
[[test]]
name = "phase24_integration"
path = "tests/phase24_integration.rs"
[[test]]
name = "python_integration"
path = "tests/python_integration.rs"
[[test]]
name = "schema_evolution"
path = "tests/schema_evolution.rs"
[[test]]
name = "stream_vm_integration"
path = "tests/stream_vm_integration.rs"
[dependencies.arrow-array]
version = "53"
optional = true
[dependencies.arrow-ipc]
version = "53"
optional = true
[dependencies.arrow-schema]
version = "53"
optional = true
[dependencies.chrono]
version = "0.4"
[dependencies.cranelift-codegen]
version = "0.116"
optional = true
[dependencies.cranelift-frontend]
version = "0.116"
optional = true
[dependencies.cranelift-jit]
version = "0.116"
optional = true
[dependencies.cranelift-module]
version = "0.116"
optional = true
[dependencies.md-5]
version = "0.10"
[dependencies.pyo3]
version = "0.23"
features = ["auto-initialize"]
optional = true
[dependencies.rand]
version = "0.8"
optional = true
[dependencies.rayon]
version = "1"
optional = true
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"rustls",
]
optional = true
[dependencies.rust_decimal]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.target-lexicon]
version = "0.13"
optional = true
[dependencies.tl-ai]
version = "0.3.0"
optional = true
[dependencies.tl-ast]
version = "0.3.0"
[dependencies.tl-data]
version = "0.3.0"
optional = true
[dependencies.tl-errors]
version = "0.3.0"
[dependencies.tl-gpu]
version = "0.3.0"
optional = true
[dependencies.tl-ir]
version = "0.3.0"
[dependencies.tl-lexer]
version = "0.3.0"
[dependencies.tl-mcp]
version = "0.3.0"
optional = true
[dependencies.tl-package]
version = "0.3.0"
optional = true
[dependencies.tl-parser]
version = "0.3.0"
[dependencies.tl-stream]
version = "0.3.0"
optional = true
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"time",
"fs",
"sync",
]
optional = true
[dev-dependencies.tempfile]
version = "3"