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:
44
44
-V, --version Prints version information
45
45
46
46
OPTIONS:
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'
50
53
-d, --deprecation-strategy <deprecation_strategy>
51
54
You can choose deprecation strategy from allow, deny, or warn. Default value is warn.
52
55
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ enum Cli {
50
50
#[ clap( short = 'I' , long = "variables-derives" ) ]
51
51
variables_derives : Option < String > ,
52
52
/// 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'
54
54
#[ clap( short = 'O' , long = "response-derives" ) ]
55
55
response_derives : Option < String > ,
56
56
/// You can choose deprecation strategy from allow, deny, or warn.
You can’t perform that action at this time.
0 commit comments