[package]
edition = "2021"
rust-version = "1.85"
name = "vllm-cpp-sys"
version = "0.0.1"
build = "build.rs"
links = "vllm"
include = [
"/build.rs",
"/wrapper.h",
"/src/**",
"/tests/**",
"/Cargo.toml",
"/README.md",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/NOTICE",
"/THIRD_PARTY.md",
"/licenses/**",
"/vllm.cpp/CMakeLists.txt",
"/vllm.cpp/cmake/**",
"/vllm.cpp/include/**",
"/vllm.cpp/src/**",
"/vllm.cpp/triton_kernels/**",
"/vllm.cpp/scripts/triton-aot-compile.py",
"/vllm.cpp/third_party/blake3/**",
"/vllm.cpp/third_party/minja/**",
"/vllm.cpp/third_party/nlohmann/**",
"/vllm.cpp/third_party/vulkan/**",
"/vllm.cpp/LICENSE",
"/vllm.cpp/NOTICE",
"/vllm.cpp/third_party/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw FFI bindings and native build integration for the stable vllm.cpp C API"
documentation = "https://docs.rs/vllm-cpp-sys"
readme = "README.md"
keywords = [
"llm",
"inference",
"ffi",
"bindings",
"vllm",
]
categories = ["external-ffi-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/querymt/vllm-cpp-rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
bundled = []
cuda = []
cuda-cutlass = ["cuda"]
default = ["bundled"]
dynamic-link = []
metal = []
mlx = ["metal"]
system = []
triton-aot = ["cuda"]
vulkan = []
[lib]
name = "vllm_cpp_sys"
path = "src/lib.rs"
[[test]]
name = "build_config"
path = "tests/build_config.rs"
[[test]]
name = "build_support"
path = "tests/build_support.rs"
[[test]]
name = "layout"
path = "tests/layout.rs"
[[test]]
name = "symbols"
path = "tests/symbols.rs"
[build-dependencies.cmake]
version = "0.1.58"