rustchain 0.1.0

Workflow transpilation and execution framework - import LangChain, Airflow, GitHub Actions, and more
Documentation
[[bin]]
name = "rustchain"
path = "src/main.rs"
required-features = ["cli"]

[[bin]]
name = "rustchain-benchmark"
path = "benchmarks/langchain_comparison/rustchain_benchmark.rs"

[[bin]]
name = "rustchain-benchmark-v2"
path = "benchmarks/langchain_comparison/rustchain_benchmark_v2.rs"
required-features = ["llm"]

[dependencies.aes-gcm]
version = "0.10"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
features = ["ws"]
optional = true
version = "0.7"

[dependencies.base64]
version = "0.22"

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

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.4"

[dependencies.csv]
version = "1.3"

[dependencies.futures]
version = "0.3"

[dependencies.glob]
version = "0.3"

[dependencies.hex]
version = "0.4"

[dependencies.is-terminal]
version = "0.4"

[dependencies.jsonwebtoken]
optional = true
version = "9.3"

[dependencies.num_cpus]
version = "1.16"

[dependencies.once_cell]
version = "1.19"

[dependencies.pbkdf2]
version = "0.12"

[dependencies.proptest]
optional = true
version = "1.4"

[dependencies.qdrant-client]
optional = true
version = "1.7"

[dependencies.rayon]
version = "1.10"

[dependencies.redis]
optional = true
version = "0.32"

[dependencies.regex]
optional = true
version = "1.10"

[dependencies.reqwest]
features = ["json", "stream", "multipart", "blocking"]
optional = true
version = "0.11"

[dependencies.schemars]
features = ["chrono", "uuid"]
version = "0.8"

[dependencies.scraper]
version = "0.20"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.sha2]
version = "0.10"

[dependencies.sysinfo]
version = "0.30"

[dependencies.tar]
version = "0.4"

[dependencies.tempfile]
version = "3.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["macros", "rt-multi-thread", "time", "fs", "process", "sync", "io-util"]
version = "1.38"

[dependencies.tokio-tungstenite]
optional = true
version = "0.21"

[dependencies.toml]
version = "0.8"

[dependencies.tower]
features = ["timeout", "limit"]
optional = true
version = "0.4"

[dependencies.tower-http]
features = ["cors", "trace"]
optional = true
version = "0.5"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["json", "env-filter"]
version = "0.3.20"

[dependencies.urlencoding]
version = "2.1"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.6"

[dependencies.walkdir]
version = "2.4"

[dependencies.xml-rs]
version = "0.8"

[dependencies.zip]
version = "0.6"

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

[dev-dependencies.axum-test]
version = "14.0"

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

[dev-dependencies.proptest]
version = "1.4"

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

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tower]
version = "0.4"

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

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

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

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

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

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

[features]
cli = ["dep:clap"]
default = ["cli", "transpiler", "tools"]
enterprise = ["dep:jsonwebtoken", "registry"]
full = []
llm = ["dep:reqwest"]
openssh = ["dep:openssh"]
ppt = []
proptest = ["dep:proptest"]
rag = ["dep:qdrant-client", "dep:reqwest"]
redis = ["dep:redis"]
registry = ["dep:reqwest"]
sandbox = []
server = ["dep:axum", "dep:tower", "dep:tower-http"]
smt = ["dep:reqwest"]
tokio-tungstenite = ["dep:tokio-tungstenite"]
tools = ["dep:reqwest"]
transpiler = ["dep:regex"]

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

[package]
authors = ["RustChain Team <team@rustchain.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "web-programming::http-server", "command-line-utilities"]
description = "Workflow transpilation and execution framework - import LangChain, Airflow, GitHub Actions, and more"
documentation = "https://docs.rs/rustchain"
edition = "2021"
homepage = "https://rustchain.dev"
keywords = ["ai", "agents", "automation", "llm", "safety"]
license = "MIT OR Apache-2.0"
name = "rustchain"
readme = "README.md"
repository = "https://github.com/Michael-A-Kuykendall/rustchain"
rust-version = "1.70"
version = "0.1.0"

[target."cfg(unix)".dependencies.openssh]
optional = true
version = "0.10"

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

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

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

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

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

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