cudf_sys/lib.rs
1//! # cudf-sys
2//!
3//! Native build crate for linking against NVIDIA's libcudf.
4//!
5//! This crate contains no Rust code — it exists solely to trigger the build
6//! script that locates and links libcudf. Downstream crates (`cudf-cxx`)
7//! depend on this to inherit the correct linker flags.
8//!
9//! ## Installation
10//!
11//! libcudf must be installed on your system. The recommended method is via conda:
12//!
13//! ```sh
14//! conda install -c rapidsai -c conda-forge libcudf cuda-version=12.2
15//! ```
16//!
17//! Alternatively, set `CUDF_ROOT` to point to a manual installation prefix.
18
19// This crate intentionally contains no code.
20// The build.rs script handles all linking configuration.