File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,12 @@ FLAGS:
4444 -V, --version Prints version information
4545
4646OPTIONS:
47- -a, --additional-derives <additional_derives>
48- Additional derives that will be added to the generated structs and enums for the response and the variables.
49- --additional-derives='Serialize,PartialEq'
47+ -I, --variables-derives <variables_derives>
48+ Additional derives that will be added to the generated structs and enums for the variables.
49+ --variables-derives='Serialize,PartialEq'
50+ -O, --response-derives <response_derives>
51+ Additional derives that will be added to the generated structs and enums for the response.
52+ --response-derives='Serialize,PartialEq'
5053 -d, --deprecation-strategy <deprecation_strategy>
5154 You can choose deprecation strategy from allow, deny, or warn. Default value is warn.
5255
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ enum Cli {
5050 #[ clap( short = 'I' , long = "variables-derives" ) ]
5151 variables_derives : Option < String > ,
5252 /// Additional derives that will be added to the generated structs and enums for the response.
53- /// --output -derives='Serialize,PartialEq'
53+ /// --response -derives='Serialize,PartialEq'
5454 #[ clap( short = 'O' , long = "response-derives" ) ]
5555 response_derives : Option < String > ,
5656 /// You can choose deprecation strategy from allow, deny, or warn.
You can’t perform that action at this time.
0 commit comments