mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: Add a local-build.toml to make downstream packaging from sourc… (#20236)
Supercedes #20230 Assists with https://github.com/Homebrew/homebrew-core/pull/140079 ``` # To run a build using a local tree: # # 0. Check out these repositories as siblings: # # - https://github.com/denoland/deno # - https://github.com/denoland/deno_core # - https://github.com/denoland/rusty_v8 # # 1. From `deno`, run: cargo --config .cargo/local-build.toml build ```
This commit is contained in:
parent
f9beb92818
commit
0379e1082c
1 changed files with 15 additions and 0 deletions
15
.cargo/local-build.toml
Normal file
15
.cargo/local-build.toml
Normal file
|
@ -0,0 +1,15 @@
|
|||
# To run a build using a local tree:
|
||||
#
|
||||
# 0. Check out these repositories as siblings:
|
||||
#
|
||||
# - https://github.com/denoland/deno
|
||||
# - https://github.com/denoland/deno_core
|
||||
# - https://github.com/denoland/rusty_v8
|
||||
#
|
||||
# 1. From `deno`, run: cargo --config .cargo/local-build.toml build
|
||||
|
||||
[patch.crates-io]
|
||||
deno_core = { path = "../deno_core/core" }
|
||||
deno_ops = { path = "../deno_core/ops" }
|
||||
serde_v8 = { path = "../deno_core/serde_v8" }
|
||||
v8 = { path = "../rusty_v8" }
|
Loading…
Reference in a new issue