klickhouse 0.2.0

Klickhouse is a pure Rust SDK for working with Clickhouse with the native protocol in async environments with minimal boilerplate and maximal performance.
Documentation
1
2
3
4
5
6
7
use rustc_version::{version, Version};

fn main() {
    if version().unwrap() >= Version::parse("1.51.0").unwrap() {
        println!("cargo:rustc-cfg=const_generics");
    }
}