[package]
edition = "2024"
rust-version = "1.85"
name = "pointlock-provider-kit"
version = "0.1.6"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Pointlock Provider SPI: the Rust trait a backend implements to execute FlowIR actions."
homepage = "https://github.com/wangweiwei/pointlock"
readme = "README.md"
keywords = [
"pointlock",
"provider",
"spi",
"automation",
"workflow",
]
categories = ["development-tools"]
license = "Apache-2.0"
repository = "https://github.com/wangweiwei/pointlock"
resolver = "2"
[lib]
name = "pointlock_provider_kit"
path = "src/lib.rs"
[[test]]
name = "conformance_fake"
path = "tests/conformance_fake.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
features = ["std"]
default-features = false
[dependencies.pointlock-ir]
version = "0.1.6"
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio-util]
version = "0.7"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]