File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ different sets of arguments. It can be useful for managing long-running tasks.
55
66## Installation
77
8+ cargo install process-queue
9+
810 cargo install --git 'https://bitbucket.org/Soft/process-queue.git'
911
1012## Usage
Original file line number Diff line number Diff line change @@ -8,10 +8,11 @@ pub fn setup_command_line() -> App<'static, 'static> {
88 . default_value ( "default" )
99 . help ( "Server name" ) ;
1010 App :: new ( "pqueue" )
11- . version ( "0.1" )
12- . author ( "samuel.lauren@iki.fi" )
11+ . version ( env ! ( "CARGO_PKG_VERSION" ) )
12+ . author ( env ! ( "CARGO_PKG_AUTHORS" ) )
1313 . about ( "Queue programs for execution" )
1414 . setting ( AppSettings :: SubcommandRequired )
15+ . setting ( AppSettings :: SubcommandRequiredElseHelp )
1516 . subcommand (
1617 SubCommand :: with_name ( "server" )
1718 . about ( "Start a job queue server" )
You can’t perform that action at this time.
0 commit comments