generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
30 lines (27 loc) · 848 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
[package]
name = "cfg-expr"
description = "A parser and evaluator for Rust `cfg()` expressions."
repository = "https://github.com/EmbarkStudios/cfg-expr"
version = "0.17.2"
authors = [
"Embark <opensource@embark-studios.com>",
"Jake Shadle <jake.shadle@embark-studios.com>",
]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
rust-version = "1.70.0"
documentation = "https://docs.rs/cfg-expr"
homepage = "https://github.com/EmbarkStudios/cfg-expr"
keywords = ["cargo", "rustc", "cfg"]
categories = ["parser-implementations"]
[features]
default = []
# Allows parsing and handling of arbitrary target triples, including ones that
# are not builtin to rustc
targets = ["target-lexicon"]
[dependencies]
smallvec = "1.8"
target-lexicon = { version = "=0.12.16", optional = true }
[dev-dependencies]
similar-asserts = "1.1"