Skip to content

Commit ca2ad8a

Browse files
committed
Rebase conflicts
1 parent c839414 commit ca2ad8a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

graphql_client/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ thiserror = { version = "1.0", optional = true }
1616
graphql_query_derive = { path = "../graphql_query_derive", version = "0.9.0" }
1717
serde_json = "1.0"
1818
serde = { version = "^1.0.78", features = ["derive"] }
19-
thiserror = "1.0.10"
2019

2120
[dependencies.futures]
2221
version = "^0.1"

graphql_client_cli/src/generate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub(crate) fn generate_code(params: CliCodegenParams) -> Result<()> {
5959
options.set_deprecation_strategy(deprecation_strategy);
6060
}
6161

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)?;
6363

6464
let generated_code = gen.to_string();
6565
let generated_code = if cfg!(feature = "rustfmt") && !no_formatting {

0 commit comments

Comments
 (0)