@@ -66,64 +66,64 @@ You'll find the binary at `target/release/cli`.
6666Run examples with:
6767
6868```
69- cargo run --example <example-name >
69+ cargo run --example openapi-v3-<client|server >
7070```
7171
7272To pass in arguments to the examples, put them after ` -- ` , for example:
7373
7474```
75- cargo run --example client -- --help
75+ cargo run --example openapi-v3- client -- --help
7676```
7777
7878### Running the example server
7979To run the server, follow these simple steps:
8080
8181```
82- cargo run --example server
82+ cargo run --example openapi-v3- server
8383```
8484
8585### Running the example client
8686To run a client, follow one of the following simple steps:
8787
8888```
89- cargo run --example client AnyOfGet
90- cargo run --example client CallbackWithHeaderPost
91- cargo run --example client ComplexQueryParamGet
92- cargo run --example client ExamplesTest
93- cargo run --example client FormTest
94- cargo run --example client GetWithBooleanParameter
95- cargo run --example client JsonComplexQueryParamGet
96- cargo run --example client MandatoryRequestHeaderGet
97- cargo run --example client MergePatchJsonGet
98- cargo run --example client MultigetGet
99- cargo run --example client MultipleAuthSchemeGet
100- cargo run --example client OneOfGet
101- cargo run --example client OverrideServerGet
102- cargo run --example client ParamgetGet
103- cargo run --example client ReadonlyAuthSchemeGet
104- cargo run --example client RegisterCallbackPost
105- cargo run --example client RequiredOctetStreamPut
106- cargo run --example client ResponsesWithHeadersGet
107- cargo run --example client Rfc7807Get
108- cargo run --example client TwoFirstLetterHeaders
109- cargo run --example client UntypedPropertyGet
110- cargo run --example client UuidGet
111- cargo run --example client XmlExtraPost
112- cargo run --example client XmlOtherPost
113- cargo run --example client XmlOtherPut
114- cargo run --example client XmlPost
115- cargo run --example client XmlPut
116- cargo run --example client EnumInPathPathParamGet
117- cargo run --example client MultiplePathParamsWithVeryLongPathToTestFormattingPathParamAPathParamBGet
118- cargo run --example client CreateRepo
119- cargo run --example client GetRepoInfo
89+ cargo run --example openapi-v3- client AnyOfGet
90+ cargo run --example openapi-v3- client CallbackWithHeaderPost
91+ cargo run --example openapi-v3- client ComplexQueryParamGet
92+ cargo run --example openapi-v3- client ExamplesTest
93+ cargo run --example openapi-v3- client FormTest
94+ cargo run --example openapi-v3- client GetWithBooleanParameter
95+ cargo run --example openapi-v3- client JsonComplexQueryParamGet
96+ cargo run --example openapi-v3- client MandatoryRequestHeaderGet
97+ cargo run --example openapi-v3- client MergePatchJsonGet
98+ cargo run --example openapi-v3- client MultigetGet
99+ cargo run --example openapi-v3- client MultipleAuthSchemeGet
100+ cargo run --example openapi-v3- client OneOfGet
101+ cargo run --example openapi-v3- client OverrideServerGet
102+ cargo run --example openapi-v3- client ParamgetGet
103+ cargo run --example openapi-v3- client ReadonlyAuthSchemeGet
104+ cargo run --example openapi-v3- client RegisterCallbackPost
105+ cargo run --example openapi-v3- client RequiredOctetStreamPut
106+ cargo run --example openapi-v3- client ResponsesWithHeadersGet
107+ cargo run --example openapi-v3- client Rfc7807Get
108+ cargo run --example openapi-v3- client TwoFirstLetterHeaders
109+ cargo run --example openapi-v3- client UntypedPropertyGet
110+ cargo run --example openapi-v3- client UuidGet
111+ cargo run --example openapi-v3- client XmlExtraPost
112+ cargo run --example openapi-v3- client XmlOtherPost
113+ cargo run --example openapi-v3- client XmlOtherPut
114+ cargo run --example openapi-v3- client XmlPost
115+ cargo run --example openapi-v3- client XmlPut
116+ cargo run --example openapi-v3- client EnumInPathPathParamGet
117+ cargo run --example openapi-v3- client MultiplePathParamsWithVeryLongPathToTestFormattingPathParamAPathParamBGet
118+ cargo run --example openapi-v3- client CreateRepo
119+ cargo run --example openapi-v3- client GetRepoInfo
120120```
121121
122122### HTTPS
123123The examples can be run in HTTPS mode by passing in the flag ` --https ` , for example:
124124
125125```
126- cargo run --example server -- --https
126+ cargo run --example openapi-v3- server -- --https
127127```
128128
129129This will use the keys/certificates from the examples directory. Note that the
0 commit comments