mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
1b416473a3
cf. https://github.com/rust-analyzer/expect-test/issues/33 cf. https://github.com/rust-lang/rust/pull/99444#issuecomment-1188844202
27 lines
657 B
TOML
27 lines
657 B
TOML
[package]
|
|
name = "cfg"
|
|
version = "0.0.0"
|
|
description = "TBD"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.57"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc-hash = "1.1.0"
|
|
|
|
tt = { path = "../tt", version = "0.0.0" }
|
|
|
|
[dev-dependencies]
|
|
mbe = { path = "../mbe" }
|
|
syntax = { path = "../syntax" }
|
|
expect-test = "1.4.0"
|
|
oorandom = "11.1.3"
|
|
# We depend on both individually instead of using `features = ["derive"]` to microoptimize the
|
|
# build graph: if the feature was enabled, syn would be built early on in the graph if `smolstr`
|
|
# supports `arbitrary`. This way, we avoid feature unification.
|
|
arbitrary = "1.1.0"
|
|
derive_arbitrary = "1.1.0"
|