13 releases
0.0.13 | Oct 27, 2024 |
---|---|
0.0.12 | Oct 26, 2024 |
0.0.4 | Sep 1, 2024 |
0.0.3 | Aug 17, 2024 |
#168 in WebSocket
1,345 downloads per month
Used in 2 crates
270KB
5.5K
SLoC
OpenIAP client c library
This is the rust implementation of the openiap client. This will also function as the "base" for openiap SDK implementations in other programming languages. For now this is only the GRPC and WebSocket client, later we will add a web rest, named pipe and TCP client as well.
lib.rs
:
The openiap.client
crate provides the [Client] struct and its methods.
For now this is only the GRPC and WebSocket client, later we will add a web rest, named pipe and TCP client as well.
Initialize a new client, by calling the Client::new_connect method.
use openiap_client::{OpenIAPError, Client, QueryRequest};
#[tokio::main]
async fn main() -> Result<(), OpenIAPError> {
let client = Client::new_connect("").await?;
let q = client.query( QueryRequest::with_projection(
"entities",
"{}",
"{\"name\":1}"
)).await?;
let items: serde_json::Value = serde_json::from_str(&q.results).unwrap();
let items: &Vec<serde_json::Value> = items.as_array().unwrap();
for item in items {
println!("Item: {:?}", item);
}
Ok(())
}
Dependencies
~21–54MB
~880K SLoC