-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99e6766
commit 7414289
Showing
4 changed files
with
48 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
### cargo-packager | ||
# cargo-packager | ||
|
||
Rust executable packager, bundler and updater. | ||
|
||
## Installation | ||
|
||
``` | ||
cargo install cargo-pacakger --locked | ||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
cargo pacakger | ||
``` | ||
|
||
## Configuration | ||
|
||
By default, `cargo-pacakger` reads configuration from `Packager.toml` or `pacakger.json` if exists, and from `package.metadata.packager` table in `Cargo.toml`. | ||
You can specify a custom configuration file using `-c/--config` flag. | ||
|
||
For full list of configuration options, see https://docs.rs/cargo-packager/latest/cargo-packager/struct.Config.html | ||
|
||
You could also use the schema from GitHub releases to validate your configuration or have auto completions in your IDE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
### cargo-packager-config | ||
# cargo-packager-config | ||
|
||
A crate that hosts the configuration file for [`cargo-packager`](../packager/). | ||
Config types for [`cargo-packager`](../packager/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
### cargo-packager | ||
# cargo-packager | ||
|
||
Rust executable packager and bundler. | ||
Rust executable packager and bundler CLI and library. | ||
|
||
## Installation | ||
|
||
``` | ||
cargo install cargo-pacakger --locked | ||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
cargo pacakger | ||
``` | ||
|
||
## Configuration | ||
|
||
By default, `cargo-pacakger` reads configuration from `Packager.toml` or `pacakger.json` if exists, and from `package.metadata.packager` table in `Cargo.toml`. | ||
You can specify a custom configuration file using `-c/--config` flag. | ||
|
||
For full list of configuration options, see https://docs.rs/cargo-packager/latest/cargo-packager/struct.Config.html | ||
|
||
You could also use the schema from GitHub releases to validate your configuration or have auto completions in your IDE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
### cargo-packager-updater | ||
## cargo-packager-updater | ||
|
||
Rust executable updater for apps installed through the packages generated by [`cargo-packager`](../packager/). |