]> git.lizzy.rs Git - rust.git/blobdiff - crates/cfg/Cargo.toml
Merge #10434
[rust.git] / crates / cfg / Cargo.toml
index 73247d1302b6b3ae5a5ffb521f7348cd9a480b17..f86199c8c380efc9b3247c65bf85bba5a456a139 100644 (file)
@@ -3,7 +3,6 @@ name = "cfg"
 version = "0.0.0"
 description = "TBD"
 license = "MIT OR Apache-2.0"
-authors = ["rust-analyzer developers"]
 edition = "2018"
 
 [lib]
@@ -17,4 +16,10 @@ tt = { path = "../tt", version = "0.0.0" }
 [dev-dependencies]
 mbe = { path = "../mbe" }
 syntax = { path = "../syntax" }
-expect-test = "1.1"
+expect-test = "1.2.0-pre.1"
+oorandom = "11"
+# 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"
+derive_arbitrary = "1"