dcollector 0.6.2

dcollector - Data collector, that uses TimescaleDB for Postgresql 13+ to store the data
Documentation
1
2
3
4
5
6
7
8
9
10
// build.rs

fn main() {
    println!(
        "cargo:rustc-link-lib=dylib=pq\ncargo:rustc-link-search=native=/Software/Postgresql13/lib\n"
    );
    println!(
        "cargo:rustc-link-lib=dylib=pq\ncargo:rustc-link-search=native=/Users/Shared/Software/Postgresql13/lib/\n"
    );
}