]> git.lizzy.rs Git - rust.git/blob - crates/cfg/Cargo.toml
Merge #10496
[rust.git] / crates / cfg / Cargo.toml
1 [package]
2 name = "cfg"
3 version = "0.0.0"
4 description = "TBD"
5 license = "MIT OR Apache-2.0"
6 edition = "2018"
7
8 [lib]
9 doctest = false
10
11 [dependencies]
12 rustc-hash = "1.1.0"
13
14 tt = { path = "../tt", version = "0.0.0" }
15
16 [dev-dependencies]
17 mbe = { path = "../mbe" }
18 syntax = { path = "../syntax" }
19 expect-test = "1.2.0-pre.1"
20 oorandom = "11"
21 # We depend on both individually instead of using `features = ["derive"]` to microoptimize the
22 # build graph: if the feature was enabled, syn would be built early on in the graph if `smolstr`
23 # supports `arbitrary`. This way, we avoid feature unification.
24 arbitrary = "1"
25 derive_arbitrary = "1"