fluvio-socket 0.14.7

Provide TCP socket wrapper for fluvio protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    built::write_built_file().expect("Failed to acquire build-time information");

    // Copy VERSION file. Do not fail e.g. when built via `cargo publish`
    if let Ok(verpath) = std::fs::canonicalize("../../VERSION") {
        if verpath.exists() {
            println!("cargo:rerun-if-changed=../../VERSION");
        }
    }
    println!("cargo:rerun-if-changed=build.rs");
}