[package]
edition = "2021"
rust-version = "1.78"
name = "edgehog-device-runtime-forwarder"
version = "0.10.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Edgehog Device Runtime is a portable middleware, that enables remote device management on Linux-based systems."
homepage = "https://github.com/edgehog-device-manager/edgehog-device-runtime"
readme = "README.md"
license = "Apache-2.0"
[features]
_test-utils = [
"dep:httpmock",
"tokio/test-util",
]
[lib]
name = "edgehog_device_runtime_forwarder"
path = "src/lib.rs"
[[test]]
name = "http-test"
path = "tests/http_test.rs"
required-features = ["_test-utils"]
[[test]]
name = "ws-test"
path = "tests/ws_test.rs"
required-features = ["_test-utils"]
[dependencies.astarte-device-sdk]
version = "0.10.3"
features = ["derive"]
[dependencies.async-trait]
version = "0.1.89"
[dependencies.backoff]
version = "0.4.0"
features = ["tokio"]
[dependencies.displaydoc]
version = "0.2.5"
[dependencies.edgehog-device-forwarder-proto]
version = "0.1.0"
[dependencies.edgehog-tls]
version = "=0.10.5"
package = "edgehog-device-runtime-tls"
[dependencies.futures]
version = "0.3.31"
[dependencies.hex]
version = "0.4.3"
[dependencies.http]
version = "1.3.1"
[dependencies.httpmock]
version = "0.7"
optional = true
[dependencies.reqwest]
version = "0.12.24"
features = [
"charset",
"http2",
"system-proxy",
"rustls-tls-native-roots-no-provider",
"stream",
]
default-features = false
[dependencies.rustls]
version = "0.23.32"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.47.1"
[dependencies.tokio-tungstenite]
version = "0.27.0"
features = [
"__rustls-tls",
"tokio-rustls",
"url",
]
[dependencies.tracing]
version = "0.1.41"
features = ["log"]
[dependencies.url]
version = "2.5.7"
[dev-dependencies.httpmock]
version = "0.7"
[dev-dependencies.tokio]
version = "1.47.1"
features = ["test-util"]
[dev-dependencies.tracing-subscriber]
version = "0.3.20"