[package]
edition = "2021"
name = "jetstream_wireformat"
version = "15.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC."
documentation = "https://jetstream.rs"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/sevki/jetstream"
[features]
all = [
"std",
"async",
"testing",
"serde",
"tokio",
]
async = ["dep:futures"]
default = [
"async",
"std",
]
serde = ["dep:serde"]
std = []
testing = ["serde"]
tokio = [
"dep:tokio",
"dep:tokio-util",
]
[lib]
name = "jetstream_wireformat"
crate-type = [
"rlib",
"staticlib",
"cdylib",
]
path = "src/lib.rs"
bench = false
[dependencies.bytes]
version = "1.11.1"
features = ["serde"]
[dependencies.jetstream_macros]
version = "15.2.0"
[dependencies.paste]
version = "1.0.15"
[dependencies.url]
version = "2.5.7"
[dependencies.zerocopy]
version = "0.8.39"
[dev-dependencies.wasm-bindgen-test]
version = "0.3.42"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.futures]
version = "0.3.31"
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.jetstream_macros]
version = "15.2.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.libc]
version = "0.2.177"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.mio]
version = "1.0.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.serde]
version = "1.0.218"
features = ["derive"]
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.time]
version = "0.3.47"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1.48.0"
optional = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio-util]
version = "0.7.16"
features = [
"full",
"io",
"time",
]
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.futures]
version = "0.3.31"
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2.15"
features = ["js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3.69"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.92"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.69"
features = ["console"]