From 9b94089b6f8db8650bb35f97309df02641c1c02f Mon Sep 17 00:00:00 2001 From: aalhendi Date: Mon, 5 Sep 2022 11:08:21 +0300 Subject: [PATCH 1/2] fix: specify rust version --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 8ac3c71c..0dd4bce3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Brendan Allan "] edition = "2021" description = "A prisma client for Rust" license = "MIT" +rust-version = "1.62" exclude = ["examples", "integration-tests"] From 4da32ff180ae67aeeefae2c8a15f4e4dc1ffcec2 Mon Sep 17 00:00:00 2001 From: aalhendi Date: Tue, 6 Sep 2022 08:59:01 +0300 Subject: [PATCH 2/2] fix: add MSRV to cli and sdk --- cli/Cargo.toml | 1 + sdk/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f049e214..df2d3e93 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -3,6 +3,7 @@ name = "prisma-client-rust-cli" version = "0.6.0" authors = ["Brendan Allan "] edition = "2021" +rust-version = "1.62" [features] default = [] diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 30df6a4c..ca478b81 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -3,6 +3,7 @@ name = "prisma-client-rust-sdk" version = "0.6.0" authors = ["Brendan Allan "] edition = "2021" +rust-version = "1.62" [dependencies] convert_case = "0.5.0"