[[bench]]
harness = false
name = "iroh_performance"
path = "benches/iroh_performance.rs"
[[bench]]
harness = false
name = "quic_performance"
path = "benches/quic_performance.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.futures]
version = "0.3.31"
[dependencies.jetstream_9p]
optional = true
version = "9.1.1"
[dependencies.jetstream_iroh]
optional = true
version = "9.1.1"
[dependencies.jetstream_macros]
version = "9.1.1"
[dependencies.jetstream_quic]
optional = true
version = "9.1.1"
[dependencies.jetstream_rpc]
version = "9.1.1"
[dependencies.jetstream_websocket]
optional = true
version = "9.1.1"
[dependencies.jetstream_wireformat]
version = "9.1.1"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.tokio-util]
features = ["codec"]
version = "0.7.16"
[dependencies.trait-variant]
version = "0.1.2"
[dev-dependencies.arbitrary]
version = "1.4.1"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.7.0"
[dev-dependencies.futures-util]
version = "0.3.30"
[dev-dependencies.jetstream_9p]
version = "9.1.1"
[dev-dependencies.jetstream_macros]
version = "9.1.1"
[dev-dependencies.jetstream_rpc]
version = "9.1.1"
[dev-dependencies.jetstream_wireformat]
features = ["all"]
version = "9.1.1"
[dev-dependencies.okstd]
features = ["macros"]
version = "1.0.2"
[dev-dependencies.s2n-quic]
version = "1.59.0"
[dev-dependencies.tmpdir]
version = "1.0.0"
[dev-dependencies.tokio]
features = ["full"]
version = "1.47.1"
[dev-dependencies.turmoil]
version = "0.6.5"
[[example]]
bench = false
name = "echo"
path = "examples/echo.rs"
[[example]]
bench = false
name = "iroh_echo"
path = "examples/iroh_echo.rs"
required-features = ["iroh"]
[[example]]
name = "wasm_example"
path = "examples/wasm_example.rs"
[[example]]
name = "wasm_example_bindings"
path = "examples/wasm_example_bindings.rs"
[features]
9p = ["dep:jetstream_9p"]
all = ["9p", "iroh"]
default = ["iroh"]
iroh = ["dep:jetstream_iroh"]
quic = ["dep:jetstream_quic"]
tokio = ["jetstream_wireformat/tokio"]
wasm = ["jetstream_wireformat/tokio"]
websocket = ["dep:jetstream_websocket"]
[lib]
bench = false
crate-type = ["cdylib", "rlib"]
name = "jetstream"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC."
documentation = "https://sevki.github.io/jetstream/"
edition = "2021"
license = "BSD-3-Clause"
name = "jetstream"
readme = "README.md"
repository = "https://github.com/sevki/jetstream"
version = "9.1.1"
[[test]]
name = "iroh"
path = "tests/iroh.rs"
[[test]]
bench = false
name = "jetstream_wire_format"
path = "tests/jetstream_wire_format/mod.rs"
[[test]]
name = "quic"
path = "tests/quic.rs"
[[test]]
bench = false
name = "server"
path = "tests/server.rs"