-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (30 loc) · 870 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "cmake-package"
version = "0.1.5"
authors = ["Daniel Vrátil <[email protected]>"]
license = "MIT"
repository = "https://github.com/danvratil/cmake-package-rs"
homepage = "https://github.com/danvratil/cmake-package-rs"
documentation = "https://docs.rs/cmake-package"
description = """
A helper library for Cargo build-scripts to find and link against existing CMake packages.
"""
keywords = ["build-dependencies", "cmake"]
readme = "README.md"
categories = ["development-tools::build-utils"]
exclude = ["/.github", "tests"]
edition = "2021"
changelog = "CHANGELOG.md"
[dependencies]
itertools = "0.14"
once_cell = "1.20"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3"
which = "7"
[dev-dependencies]
scopeguard = "1.2"
serial_test = "3.2"
[target.'cfg(unix)'.dev-dependencies]
stdio-override = "0.1"