[package]
edition = "2021"
name = "posemesh-compute-node"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Posemesh compute node engine: config, DDS/DMS, heartbeat, storage (no persistence)."
readme = "README.md"
license = "MIT"
repository = "https://github.com/aukilabs/prompting"
[features]
metrics = []
[lib]
name = "posemesh_compute_node"
path = "src/lib.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "dms_client_min"
path = "tests/dms_client_min.rs"
[[test]]
name = "dms_paths"
path = "tests/dms_paths.rs"
[[test]]
name = "domain_client_http"
path = "tests/domain_client_http.rs"
[[test]]
name = "engine_dms_flow"
path = "tests/engine_dms_flow.rs"
[[test]]
name = "engine_registry"
path = "tests/engine_registry.rs"
[[test]]
name = "engine_storage_ports"
path = "tests/engine_storage_ports.rs"
[[test]]
name = "error_types"
path = "tests/error_types.rs"
[[test]]
name = "heartbeat_client"
path = "tests/heartbeat_client.rs"
[[test]]
name = "heartbeat_loop"
path = "tests/heartbeat_loop.rs"
[[test]]
name = "heartbeat_scheduler"
path = "tests/heartbeat_scheduler.rs"
[[test]]
name = "http_endpoints"
path = "tests/http_endpoints.rs"
[[test]]
name = "multipart_upload_token_rotation"
path = "tests/multipart_upload_token_rotation.rs"
[[test]]
name = "poller_backoff"
path = "tests/poller_backoff.rs"
[[test]]
name = "runner_dispatch"
path = "tests/runner_dispatch.rs"
[[test]]
name = "storage_errors"
path = "tests/storage_errors.rs"
[[test]]
name = "storage_layout"
path = "tests/storage_layout.rs"
[[test]]
name = "telemetry_init"
path = "tests/telemetry_init.rs"
[[test]]
name = "token_rotation"
path = "tests/token_rotation.rs"
[dependencies.anyhow]
version = "1.0.95"
[dependencies.async-trait]
version = "0.1.88"
[dependencies.axum]
version = "0.7.5"
[dependencies.chrono]
version = "0.4.38"
features = ["serde"]
[dependencies.compute-runner-api]
version = "0.1.2"
package = "posemesh-compute-node-runner-api"
[dependencies.futures]
version = "0.3.30"
[dependencies.hex]
version = "0.4.3"
[dependencies.k256]
version = "0.13.4"
features = ["ecdsa"]
[dependencies.parking_lot]
version = "0.12.3"
[dependencies.posemesh-domain-http]
version = "1.5.1"
[dependencies.posemesh-node-registration]
version = "0.2.1"
[dependencies.rand]
version = "0.8.5"
[dependencies.regex]
version = "1.11.2"
[dependencies.reqwest]
version = "0.12.8"
features = [
"json",
"rustls-tls",
"json",
"rustls-tls",
"stream",
]
default-features = false
[dependencies.semver]
version = "1.0.26"
[dependencies.serde]
version = "1.0.210"
[dependencies.serde_json]
version = "1.0.128"
[dependencies.sha3]
version = "0.10.8"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.44.2"
features = [
"sync",
"time",
"macros",
"fs",
"signal",
"io-util",
]
[dependencies.tokio-util]
version = "0.7.16"
features = ["rt"]
[dependencies.tower]
version = "0.4.13"
features = ["util"]
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
version = "0.3.18"
features = [
"env-filter",
"fmt",
"fmt",
"ansi",
"json",
"env-filter",
]
[dependencies.url]
version = "2.5.7"
features = ["serde"]
[dependencies.uuid]
version = "1.10.1"
features = [
"v4",
"serde",
]
[dev-dependencies.async-trait]
version = "0.1.88"
[dev-dependencies.futures]
version = "0.3.30"
[dev-dependencies.httpmock]
version = "0.7.0"
[dev-dependencies.once_cell]
version = "1.21.3"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.tempfile]
version = "3.21.0"
[dev-dependencies.tokio]
version = "1.44.2"
features = [
"rt-multi-thread",
"macros",
"signal",
"time",
"test-util",
]
[dev-dependencies.tower]
version = "0.4.13"
[dev-dependencies.zip]
version = "0.6.6"