mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
HACKING_QUICKSTART.md: Don't recommend creating .cargo/config in parent directory
Recommend putting crate overrides directly in the servo/.cargo/config, rather than in Servo's parent directory. Overrides in the parent directory are unnecessary and confusing for typical use cases.
This commit is contained in:
parent
9412e71460
commit
dac4056d60
1 changed files with 3 additions and 3 deletions
|
@ -111,11 +111,11 @@ This is how my projects are laid out:
|
|||
|
||||
These are all git repositories.
|
||||
|
||||
To make it so that servo uses `~/my-projects/cocoa-rs/` and `~/my-projects/glutin/` , create a `~/my-projects/.cargo/config` file:
|
||||
To make it so that servo uses `~/my-projects/cocoa-rs/` and `~/my-projects/glutin/` , create a `~/my-projects/servo/.cargo/config` file:
|
||||
|
||||
``` shell
|
||||
$ cat ~/my-projects/.cargo/config
|
||||
paths = ['glutin', 'cocoa-rs']
|
||||
$ cat ~/my-projects/servo/.cargo/config
|
||||
paths = ['../glutin', '../cocoa-rs']
|
||||
```
|
||||
|
||||
This will tell any cargo project to not use the online version of the dependency, but your local clone.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue