Skip to content

Commit

Permalink
goto: fix cargo issue with checkout crate
Browse files Browse the repository at this point in the history
Summary:
A bunch of cargo-related utilities (such as `rust-analyzer`) were not working properly due to the checkout `Cargo.toml` not having correct dependencies.

Note that even without this change `make local`, `make hg`, `make oss`, and `buck build` would still work.

Reviewed By: muirdm

Differential Revision: D52035672

fbshipit-source-id: 351121bddd8a3c30d13908ee7c11bd444c384bec
  • Loading branch information
sggutier authored and facebook-github-bot committed Dec 11, 2023
1 parent f485980 commit 84d475f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion eden/scm/lib/checkout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ walkdir = "2.3"
fs-err = { version = "2.6.0", features = ["tokio"] }

[features]
eden = ["async-runtime", "edenfs-client", "hg-metrics", "toml"]
eden = ["async-runtime", "edenfs-client", "hg-metrics", "toml", "workingcopy/eden"]
1 change: 1 addition & 0 deletions eden/scm/lib/checkout/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ rust_library(
"edenfs-client",
"hg-metrics",
"toml",
"workingcopy/eden",
],
},
},
Expand Down

0 comments on commit 84d475f

Please sign in to comment.