diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-02 12:00:39 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-02 12:00:39 +0100 |
commit | a0b3eb7135361315ed953613a1a8c7a038b1562d (patch) | |
tree | ffd110f7211a8eb93f4fb7fde394bdd26977f187 /docs/dev/style.md | |
parent | ea8feca31ade2b23d1e1b4cb7b0ad816de792acd (diff) | |
parent | 27b779d1fd7a690a065099e51aed253e6a5f3a6c (diff) |
Merge #8292
8292: internal: document Cargo.lock maintenance process r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'docs/dev/style.md')
-rw-r--r-- | docs/dev/style.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md index e4a1672ca..1b1c24b1e 100644 --- a/docs/dev/style.md +++ b/docs/dev/style.md | |||
@@ -55,9 +55,9 @@ https://www.tedinski.com/2018/02/06/system-boundaries.html | |||
55 | We try to be very conservative with usage of crates.io dependencies. | 55 | We try to be very conservative with usage of crates.io dependencies. |
56 | Don't use small "helper" crates (exception: `itertools` is allowed). | 56 | Don't use small "helper" crates (exception: `itertools` is allowed). |
57 | If there's some general reusable bit of code you need, consider adding it to the `stdx` crate. | 57 | If there's some general reusable bit of code you need, consider adding it to the `stdx` crate. |
58 | A useful exercise is to read Cargo.lock and see if some of the *transitive* dependencies do not make sense for rust-analyzer. | ||
58 | 59 | ||
59 | **Rationale:** keep compile times low, create ecosystem pressure for faster | 60 | **Rationale:** keep compile times low, create ecosystem pressure for faster compiles, reduce the number of things which might break. |
60 | compiles, reduce the number of things which might break. | ||
61 | 61 | ||
62 | ## Commit Style | 62 | ## Commit Style |
63 | 63 | ||