Skip to content

Commit 9f4f8d9

Browse files
committed
Include crates recommended as part of the compiler output
Closes #718
1 parent b08b4bc commit 9f4f8d9

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

compiler/base/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ version = "=0.4.8"
5454
package = "arrayvec"
5555
version = "=0.7.1"
5656

57+
[dependencies.async_recursion]
58+
package = "async-recursion"
59+
version = "=0.3.2"
60+
5761
[dependencies.async_trait]
5862
package = "async-trait"
5963
version = "=0.1.50"

compiler/base/crate-information.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
"version": "0.7.1",
5555
"id": "arrayvec"
5656
},
57+
{
58+
"name": "async-recursion",
59+
"version": "0.3.2",
60+
"id": "async_recursion"
61+
},
5762
{
5863
"name": "async-trait",
5964
"version": "0.1.50",

top-crates/crate-modifications.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
exclusions = []
22

3-
additions = []
3+
additions = [
4+
# Crates that the compiler recommends
5+
# rg 'https://crates.io/crates/[a-z_-]+' --glob '*.stderr' --only-matching --no-line-number --no-filename | sort | uniq | cut -d '/' -f 5
6+
"async-trait",
7+
"async-recursion",
8+
]

0 commit comments

Comments
 (0)