File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ This is a major release containing four new features:
11
11
- Support for lock files.
12
12
- Download tarballs when downloading packages from GitHub.
13
13
- A setup command.
14
+ - Added a ` --package, -p ` command line option.
14
15
15
16
## 0.13.0
16
17
Original file line number Diff line number Diff line change @@ -436,7 +436,12 @@ files.
436
436
The ` run ` command can be used to build and run any binary specified in your
437
437
package's ` bin ` list. The binary needs to be specified after any compilation flags
438
438
if there are several binaries defined. Any flags after the binary or ` -- `
439
- are passed to the binary when it is run.
439
+ are passed to the binary when it is run. It is possible to run a binary from some
440
+ dependency package. To do this pass the ` --package, -p ` option to Nimble. For example:
441
+
442
+ ```
443
+ nimble --package:foo run <compilation_flags> bar <run_flags>
444
+ ```
440
445
441
446
### nimble c
442
447
You can’t perform that action at this time.
0 commit comments