aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_expand/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-04-21 19:50:53 +0100
committerGitHub <[email protected]>2020-04-21 19:50:53 +0100
commit7ab28cacbb50d78e4e6f12293351683625cab607 (patch)
tree10242c971eecee5b10f6d02ce36c789d7da9bfd1 /crates/ra_hir_expand/Cargo.toml
parent4a250021b1a1def483f7faf2b534ec4dd7defd02 (diff)
parent4a303366c85850f5af60d21ed53d1c59fc468e29 (diff)
Merge #4076
4076: Improve remove derive attrs r=matklad a=edwin0cheng This PR implemented a proper `remove_derive_attrs` function which **merely** remove any `#[derive(*)]` attributes. Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/ra_hir_expand/Cargo.toml')
-rw-r--r--crates/ra_hir_expand/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_hir_expand/Cargo.toml b/crates/ra_hir_expand/Cargo.toml
index d6e3c1f76..2cd522766 100644
--- a/crates/ra_hir_expand/Cargo.toml
+++ b/crates/ra_hir_expand/Cargo.toml
@@ -18,3 +18,4 @@ ra_parser = { path = "../ra_parser" }
18ra_prof = { path = "../ra_prof" } 18ra_prof = { path = "../ra_prof" }
19tt = { path = "../ra_tt", package = "ra_tt" } 19tt = { path = "../ra_tt", package = "ra_tt" }
20mbe = { path = "../ra_mbe", package = "ra_mbe" } 20mbe = { path = "../ra_mbe", package = "ra_mbe" }
21test_utils = { path = "../test_utils"}