[package]
edition = "2021"
name = "fabric-platform"
version = "0.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client SDK for the Fabric platform"
homepage = "https://gofabric.dev"
documentation = "https://docs.rs/fabric-platform"
readme = "README.md"
keywords = [
"fabric",
"ai",
"workflow",
"sdk",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/tinylabscom/fabric"
[lib]
name = "fabric_sdk"
path = "src/lib.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.bytes]
version = "1"
[dependencies.futures-util]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
"rt",
"time",
]
[target.'cfg(target_arch = "wasm32")'.dependencies.gloo-timers]
version = "0.3"
features = ["futures"]
[target.'cfg(target_arch = "wasm32")'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.web-time]
version = "1"