forked from joshtriplett/metadeps
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 940 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 940 Bytes
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
34
[package]
name = "system-deps"
version = "7.0.8"
authors = [
"Guillaume Desmottes <guillaume.desmottes@collabora.com>",
"Josh Triplett <josh@joshtriplett.org>",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gdesmott/system-deps"
description = "Discover and configure system dependencies from declarative dependencies in Cargo.toml"
keywords = [
"pkg-config",
"build-dependencies",
"build-depends",
"manifest",
"metadata",
]
edition = "2018"
rust-version = "1.78.0"
documentation = "https://docs.rs/system-deps/"
readme = "README.md"
[dependencies]
pkg-config = "0.3.25"
toml = { version = "1", default-features = false, features = ["parse", "std"] }
version-compare = "0.2"
heck = "0.5"
# allow cfg-expr between 0.17 and 0.20 to keep MSRV lower
cfg-expr = { version = ">= 0.17, < 0.21", features = ["targets"] }
[dev-dependencies]
lazy_static = "1"
itertools = "0.14"
assert_matches = "1.5"