[package]
edition = "2021"
rust-version = "1.75"
name = "operonx"
version = "0.7.1"
build = false
include = [
"src/**",
"tests/common/**",
"tests/spec/**",
"tests/internal/**",
"tests/*.rs",
"../../tests/spec/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Rust execution backend for Operon workflows"
readme = false
license = "Apache-2.0"
repository = "https://github.com/batman1m2001-cyber/Operonx"
[package.metadata.docs.rs]
all-features = true
[features]
default = [
"langfuse",
"operonx-eyes",
]
langfuse = []
onnx = [
"dep:ort",
"dep:tokenizers",
]
operonx-eyes = []
triton = [
"dep:tonic",
"dep:prost",
]
[lib]
name = "operonx"
path = "src/lib.rs"
[[test]]
name = "internal_core"
path = "tests/internal_core.rs"
[[test]]
name = "internal_providers"
path = "tests/internal_providers.rs"
[[test]]
name = "internal_telemetry"
path = "tests/internal_telemetry.rs"
[[test]]
name = "spec_core"
path = "tests/spec_core.rs"
[[test]]
name = "spec_providers"
path = "tests/spec_providers.rs"
[[test]]
name = "spec_telemetry"
path = "tests/spec_telemetry.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6.1"
[dependencies.dotenvy]
version = "0.15"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
[dependencies.lasso]
version = "0.7"
features = ["multi-threaded"]
[dependencies.operonx-macros]
version = "0.7.1"
[dependencies.ort]
version = "=2.0.0-rc.9"
optional = true
[dependencies.parking_lot]
version = "0.12"
[dependencies.prost]
version = "0.13"
optional = true
[dependencies.rand]
version = "0.8"
features = ["std_rng"]
[dependencies.rayon]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
"json",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.smallvec]
version = "1.13"
features = ["serde"]
[dependencies.thiserror]
version = "1.0"
[dependencies.tokenizers]
version = "0.20"
optional = true
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tonic]
version = "0.12"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1.10"
features = [
"v4",
"serde",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wiremock]
version = "0.6"