[package]
edition = "2024"
rust-version = "1.97"
name = "rahti-native"
version = "0.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run a Rahti application inside a native package: packaged paths, a loopback-only embedded server, and a per-installation session key."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jeffersonabraham/rahti-native"
[lib]
name = "rahti_native"
path = "src/lib.rs"
[[test]]
name = "embedded"
path = "tests/embedded.rs"
[dependencies.axum]
version = "0.8.9"
[dependencies.getrandom]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1.53.1"
features = [
"macros",
"net",
"rt",
"sync",
"time",
]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.http]
version = "1"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.rahti]
version = "0.0.23"
features = ["ws"]
default-features = false
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dev-dependencies.tokio-tungstenite]
version = "0.28"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[dev-dependencies.tower-http]
version = "0.7"
features = ["fs"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_Security_Cryptography",
]