[package]
edition = "2024"
rust-version = "1.85"
name = "iii-sdk"
version = "0.11.2"
authors = ["Motia LLC"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SDK for III Engine - a platform for building distributed applications"
homepage = "https://github.com/iii-hq/sdk"
readme = "README.md"
keywords = [
"iii",
"sdk",
"engine",
"distributed",
]
categories = [
"api-bindings",
"asynchronous",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/iii-hq/sdk"
resolver = "2"
[lib]
name = "iii_sdk"
path = "src/lib.rs"
[[test]]
name = "api_triggers"
path = "tests/api_triggers.rs"
[[test]]
name = "bridge"
path = "tests/bridge.rs"
[[test]]
name = "data_channels"
path = "tests/data_channels.rs"
[[test]]
name = "healthcheck"
path = "tests/healthcheck.rs"
[[test]]
name = "hold_process"
path = "tests/hold_process.rs"
[[test]]
name = "http_external_functions"
path = "tests/http_external_functions.rs"
[[test]]
name = "iii_fn_test"
path = "tests/iii_fn_test.rs"
[[test]]
name = "init_api"
path = "tests/init_api.rs"
[[test]]
name = "middleware"
path = "tests/middleware.rs"
[[test]]
name = "pubsub"
path = "tests/pubsub.rs"
[[test]]
name = "queue_integration"
path = "tests/queue_integration.rs"
[[test]]
name = "rbac_workers"
path = "tests/rbac_workers.rs"
[[test]]
name = "register_function_test"
path = "tests/register_function_test.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.hostname]
version = "0.4"
[dependencies.opentelemetry]
version = "0.31"
[dependencies.opentelemetry-http]
version = "0.31"
features = ["reqwest"]
[dependencies.opentelemetry-proto]
version = "0.31"
features = [
"gen-tonic-messages",
"trace",
"metrics",
"logs",
"with-serde",
]
[dependencies.opentelemetry_sdk]
version = "0.31"
features = [
"rt-tokio",
"logs",
"metrics",
"trace",
]
[dependencies.prost]
version = "0.14"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sysinfo]
version = "0.38"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"net",
]
[dependencies.tokio-tungstenite]
version = "0.28"
features = ["rustls-tls-native-roots"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.ctor]
version = "0.6.3"
[dev-dependencies.opentelemetry]
version = "0.31"
[dev-dependencies.opentelemetry_sdk]
version = "0.31"
features = [
"rt-tokio",
"trace",
"testing",
]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"multipart",
"stream",
]
default-features = false
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]