]> git.lizzy.rs Git - rust.git/blob - crates/cfg/Cargo.toml
Merge #10631
[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 = "2021"
7 rust-version = "1.56"
8
9 [lib]
10 doctest = false
11
12 [dependencies]
13 rustc-hash = "1.1.0"
14
15 tt = { path = "../tt", version = "0.0.0" }
16
17 [dev-dependencies]
18 mbe = { path = "../mbe" }
19 syntax = { path = "../syntax" }
20 expect-test = "1.2.0-pre.1"
21 oorandom = "11"
22 # We depend on both individually instead of using `features = ["derive"]` to microoptimize the
23 # build graph: if the feature was enabled, syn would be built early on in the graph if `smolstr`
24 # supports `arbitrary`. This way, we avoid feature unification.
25 arbitrary = "1"
26 derive_arbitrary = "1"