ferriskey 0.3.4

Rust client for Valkey, built for FlowFabric. Forked from glide-core (valkey-glide).
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0

fn main() {
    // Create 'dns_tests_enabled' configuration flag.
    // See README.md#dns-tests for setup instructions.
    println!("cargo::rustc-check-cfg=cfg(dns_tests_enabled)");
    if std::env::var("VALKEY_GLIDE_DNS_TESTS_ENABLED").is_ok() {
        println!("cargo:rustc-cfg=dns_tests_enabled");
    }
}