forked from joshtriplett/metadeps
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
32 lines (30 loc) · 842 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
[package]
name = "system-deps"
version = "7.0.3"
authors = [
"Guillaume Desmottes <[email protected]>",
"Josh Triplett <[email protected]>",
]
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"
documentation = "https://docs.rs/system-deps/"
readme = "README.md"
[dependencies]
pkg-config = "0.3.25"
toml = { version = "0.8", default-features = false, features = ["parse"] }
version-compare = "0.2"
heck = "0.5"
cfg-expr = { version = "0.17", features = ["targets"] }
[dev-dependencies]
lazy_static = "1"
itertools = "0.13"
assert_matches = "1.5"