diff --git a/Cargo.lock b/Cargo.lock index 601b220..ff4dc76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,18 +172,18 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "serde" -version = "1.0.209" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" +checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.209" +version = "1.0.210" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" +checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" dependencies = [ "proc-macro2", "quote", diff --git a/example/Cargo.toml b/example/Cargo.toml index 9fc9da6..5503d7d 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" [dependencies] shopify_function = { path = "../shopify_function" } -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0" graphql_client = "0.14.0" graphql_client_codegen = "0.14.0" diff --git a/example_with_targets/Cargo.toml b/example_with_targets/Cargo.toml index fa22b00..b5a038d 100644 --- a/example_with_targets/Cargo.toml +++ b/example_with_targets/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" [dependencies] shopify_function = { path = "../shopify_function" } -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0" graphql_client = "0.14.0" graphql_client_codegen = "0.14.0" diff --git a/shopify_function/Cargo.toml b/shopify_function/Cargo.toml index 09c8bb8..3b6f011 100644 --- a/shopify_function/Cargo.toml +++ b/shopify_function/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" description = "Crate to write Shopify Functions in Rust." [dependencies] -serde = { version = "1.0.209", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0" shopify_function_macro = { version = "0.8.0", path = "../shopify_function_macro" }