[package]
edition = "2024"
rust-version = "1.85"
name = "pointlock-cli"
version = "0.1.2"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Pointlock command-line interface: lock, compile, run, resume, inspect, locate, report."
homepage = "https://github.com/wangweiwei/pointlock"
readme = "README.md"
keywords = [
"pointlock",
"cli",
"automation",
"workflow",
"orchestration",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/wangweiwei/pointlock"
resolver = "2"
[[bin]]
name = "pointlock"
path = "src/main.rs"
[[test]]
name = "e2e_m0"
path = "tests/e2e_m0.rs"
[[test]]
name = "e2e_m1"
path = "tests/e2e_m1.rs"
[[test]]
name = "e2e_m2"
path = "tests/e2e_m2.rs"
[[test]]
name = "e2e_m3"
path = "tests/e2e_m3.rs"
[[test]]
name = "e2e_serve"
path = "tests/e2e_serve.rs"
[[test]]
name = "e2e_vision"
path = "tests/e2e_vision.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.percent-encoding]
version = "2"
[dependencies.pointlock-compiler]
version = "0.1.2"
[dependencies.pointlock-expr]
version = "0.1.2"
[dependencies.pointlock-human-cli]
version = "0.1.2"
[dependencies.pointlock-ir]
version = "0.1.2"
[dependencies.pointlock-provider-devicerail]
version = "0.1.2"
[dependencies.pointlock-provider-kit]
version = "0.1.2"
[dependencies.pointlock-runner]
version = "0.1.2"
[dependencies.pointlock-store]
version = "0.1.2"
[dependencies.pointlock-vision]
version = "0.1.2"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"blocking",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tiny_http]
version = "0.12"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.serde_json]
version = "1"