digdigdig3 0.1.19

Unified async Rust API for 44 exchange connectors — crypto, stocks, forex. REST + WebSocket.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # gRPC Transport
//!
//! Feature-gated behind `grpc` — only compiled when the `grpc` feature is enabled.
//!
//! Provides `GrpcClient`, a thin connection manager around `tonic::Channel`.
//! Connectors that use gRPC (e.g., Tinkoff Invest API) create a `GrpcClient`,
//! call `channel()`, then build typed tonic service stubs from the channel.
//!
//! ## Enable
//!
//! ```toml
//! [dependencies]
//! digdigdig3 = { version = "...", features = ["grpc"] }
//! ```

mod client;

pub use client::GrpcClient;