File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ thiserror = { version = "1.0", optional = true }
16
16
graphql_query_derive = { path = " ../graphql_query_derive" , version = " 0.9.0" }
17
17
serde_json = " 1.0"
18
18
serde = { version = " ^1.0.78" , features = [" derive" ] }
19
- thiserror = " 1.0.10"
20
19
21
20
[dependencies .futures ]
22
21
version = " ^0.1"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pub(crate) fn generate_code(params: CliCodegenParams) -> Result<()> {
59
59
options. set_deprecation_strategy ( deprecation_strategy) ;
60
60
}
61
61
62
- let gen = generate_module_token_stream ( query_path. clone ( ) , & schema_path, options) . map_err ( |fail| fail . compat ( ) ) ?;
62
+ let gen = generate_module_token_stream ( query_path. clone ( ) , & schema_path, options) ?;
63
63
64
64
let generated_code = gen. to_string ( ) ;
65
65
let generated_code = if cfg ! ( feature = "rustfmt" ) && !no_formatting {
You can’t perform that action at this time.
0 commit comments