-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
41 lines (35 loc) · 1.16 KB
/
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
34
35
36
37
38
39
40
41
[package]
name = "target-spec"
version = "3.3.1"
description = "Evaluate Cargo.toml target specifications"
documentation = "https://docs.rs/target-spec"
repository = "https://github.com/guppy-rs/guppy"
authors = ["Jack Moffitt <[email protected]>", "Rain <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["cargo", "targets", "platforms", "os", "cpu"]
categories = ["development-tools", "parser-implementations"]
edition = "2021"
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
cfg-expr = { workspace = true, features = ["targets"] }
proptest = { version = "1.6.0", optional = true }
serde = { version = "1.0.217", optional = true, features = ["derive"] }
serde_json = { version = "1.0.138", optional = true }
target-lexicon = { version = "0.12.16", features = ["std"] }
unicode-ident = "1.0.16"
guppy-workspace-hack.workspace = true
[dev-dependencies]
test-case = "3.3.1"
toml = "0.5.11"
[features]
custom = ["dep:serde", "dep:serde_json"]
proptest1 = ["proptest"]
summaries = ["dep:serde"]
[lints]
workspace = true