azure_data_cosmos_driver 0.2.0

Core implementation layer for Azure Cosmos DB - provides transport, routing, and protocol handling for cross-language SDK reuse
Documentation
1
2
3
4
5
6
7
8
9
10
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Registers custom cfgs used by this crate's integration tests.
//
// Some CI/build setups enable `-W unexpected-cfgs`, and in newer Rust toolchains
// unknown cfg names are warned/denied unless explicitly declared via check-cfg.
fn main() {
    // Allow `#[cfg_attr(not(test_category = "..."), ignore)]` in `tests/*.rs`.
    println!("cargo:rustc-check-cfg=cfg(test_category, values(\"emulator\", \"multi_write\"))");
}