[package]
edition = "2024"
rust-version = "1.94"
name = "ytsaurus-rpc"
version = "0.3.1"
authors = ["Sam Shaplygin <semyuon@gmail.com>"]
build = false
exclude = ["tests/go_interop.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YTsaurus RPC proxy client: bus framing, RPC envelope and the dynamic-table row wire format"
homepage = "https://github.com/sshaplygin/ytsaurus-rs"
readme = "README.md"
keywords = [
"ytsaurus",
"rpc",
"bus",
"protobuf",
]
categories = [
"network-programming",
"database",
]
license = "Apache-2.0"
repository = "https://github.com/sshaplygin/ytsaurus-rs"
[lib]
name = "ytsaurus_rpc"
path = "src/lib.rs"
[[example]]
name = "rpc_e2e"
path = "examples/rpc_e2e.rs"
[[test]]
name = "client_over_a_stub"
path = "tests/client_over_a_stub.rs"
[[test]]
name = "connection_failure_modes"
path = "tests/connection_failure_modes.rs"
[dependencies.bytes]
version = "1.10"
[dependencies.prost]
version = "0.14"
[dependencies.rand]
version = "0.9"
features = ["thread_rng"]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"net",
"rt",
"sync",
"time",
"macros",
"io-util",
]
default-features = false
[dependencies.ytsaurus-api]
version = "0.3.1"
[dependencies.ytsaurus-proto]
version = "0.3.1"
[dev-dependencies.proptest]
version = "1.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"test-util",
]