[package]
edition = "2021"
name = "heyo-sdk"
version = "0.1.2"
build = false
exclude = ["tests/p2p_roundtrip.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the Heyo cloud sandbox API."
homepage = "https://heyo.computer"
readme = "README.md"
license = "Apache-2.0"
repository = "https://docs.heyo.computer"
[lib]
name = "heyo_sdk"
path = "src/lib.rs"
[[test]]
name = "db_checkout_checkin"
path = "tests/db_checkout_checkin.rs"
[[test]]
name = "db_select_one"
path = "tests/db_select_one.rs"
[[test]]
name = "kvm_e2e"
path = "tests/kvm_e2e.rs"
[[test]]
name = "shell_protocol"
path = "tests/shell_protocol.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-stream]
version = "0.3"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.flate2]
version = "1"
[dependencies.futures-util]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.iroh]
version = "0.96.1"
[dependencies.iroh-tickets]
version = "0.3.0"
[dependencies.pkcs8]
version = "=0.11.0-rc.11"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"stream",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"net",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.23"
features = [
"connect",
"rustls-tls-webpki-roots",
]
default-features = false
[dependencies.url]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"net",
"fs",
"io-util",
]