12 releases

0.5.2 Dec 6, 2024
0.5.1 Oct 19, 2023
0.5.0 Feb 27, 2023
0.4.0 Feb 7, 2022
0.1.2 Nov 11, 2020

#391 in Database interfaces

Download history 119/week @ 2024-09-22 132/week @ 2024-09-29 180/week @ 2024-10-06 157/week @ 2024-10-13 363/week @ 2024-10-20 321/week @ 2024-10-27 537/week @ 2024-11-03 705/week @ 2024-11-10 119/week @ 2024-11-17 149/week @ 2024-11-24 259/week @ 2024-12-01 161/week @ 2024-12-08 61/week @ 2024-12-15 46/week @ 2024-12-22 44/week @ 2024-12-29 133/week @ 2025-01-05

317 downloads per month
Used in connectorx

MIT license

110KB
3K SLoC

Prusto

A presto/trino client library written in rust.

Installation

# Cargo.toml
[dependencies]
prusto = "0.5"

In order to use this crate as presto client, enable "presto" feature.

# Cargo.toml
[dependencies]
prusto = { version = "0.5", features = ["presto"] }

Example

use prusto::{ClientBuilder, Presto};

#[derive(Presto, Debug)]
struct Foo {
    a: i64,
    b: f64,
    c: String,
}

#[tokio::main]
async fn main() {
    let cli = ClientBuilder::new("user", "localhost")
        .port(8090)
        .catalog("catalog")
        .build()
        .unwrap();

    let sql = "select 1 as a, cast(1.1 as double) as b, 'bar' as c ";

    let data = cli.get_all::<Foo>(sql.into()).await.unwrap().into_vec();

    for r in data {
        println!("{:?}", r)
    }
}

License

MIT

Dependencies

~12–26MB
~371K SLoC