From d071b42b0738358099d25b563e2c64592694c5b0 Mon Sep 17 00:00:00 2001 From: jkomyno <12381818+jkomyno@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:42:24 +0100 Subject: [PATCH] fix(schema-engine-wasm): Cargo.toml features of schema-connector and sql-schema-describer --- Cargo.toml | 4 +++- schema-engine/connectors/schema-connector/Cargo.toml | 10 +++++----- schema-engine/sql-schema-describer/Cargo.toml | 10 +++++----- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 53c478bb120..aa62f03bf5f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,12 +3,14 @@ resolver = "2" members = [ "schema-engine/cli", "schema-engine/core", + "schema-engine/core-wasm", "schema-engine/connectors/*", "schema-engine/datamodel-renderer", "schema-engine/json-rpc-api-build", + "schema-engine/mongodb-schema-describer", "schema-engine/sql-migration-tests", "schema-engine/sql-introspection-tests", - "schema-engine/mongodb-schema-describer", + "schema-engine/schema-engine-wasm", "schema-engine/sql-schema-describer", "query-engine/connectors/*", "query-engine/connector-test-kit-rs/qe-setup", diff --git a/schema-engine/connectors/schema-connector/Cargo.toml b/schema-engine/connectors/schema-connector/Cargo.toml index 5b5943ba52c..9388a967360 100644 --- a/schema-engine/connectors/schema-connector/Cargo.toml +++ b/schema-engine/connectors/schema-connector/Cargo.toml @@ -5,15 +5,15 @@ edition = "2021" [features] postgresql = ["psl/postgresql", "quaint/postgresql"] -postgresql-native = ["postgresql", "quaint/pooled"] +postgresql-native = ["postgresql", "quaint/postgresql-native", "quaint/pooled"] sqlite = ["psl/sqlite", "quaint/sqlite"] -sqlite-native = ["sqlite", "quaint/pooled", "quaint/sqlite-native"] +sqlite-native = ["sqlite", "quaint/sqlite-native", "quaint/pooled", "quaint/expose-drivers"] mysql = ["psl/mysql", "quaint/mysql"] -mysql-native = ["mysql", "quaint/pooled"] +mysql-native = ["mysql", "quaint/mysql-native", "quaint/pooled"] mssql = ["psl/mssql", "quaint/mssql"] -mssql-native = ["mssql", "quaint/pooled"] +mssql-native = ["mssql", "quaint/mssql-native", "quaint/pooled"] cockroachdb = ["psl/cockroachdb", "quaint/postgresql"] -cockroachdb-native = ["cockroachdb", "quaint/pooled"] +cockroachdb-native = ["cockroachdb", "quaint/postgresql-native", "quaint/pooled"] all-native = [ "postgresql-native", "sqlite-native", diff --git a/schema-engine/sql-schema-describer/Cargo.toml b/schema-engine/sql-schema-describer/Cargo.toml index 46279979e4f..34f708dca0a 100644 --- a/schema-engine/sql-schema-describer/Cargo.toml +++ b/schema-engine/sql-schema-describer/Cargo.toml @@ -5,15 +5,15 @@ version = "0.1.0" [features] postgresql = ["psl/postgresql", "quaint/postgresql"] -postgresql-native = ["postgresql", "quaint/pooled"] +postgresql-native = ["postgresql", "quaint/postgresql-native", "quaint/pooled"] sqlite = ["psl/sqlite", "quaint/sqlite"] -sqlite-native = ["sqlite", "quaint/pooled", "quaint/sqlite-native", "quaint/expose-drivers"] +sqlite-native = ["sqlite", "quaint/sqlite-native", "quaint/pooled", "quaint/expose-drivers"] mysql = ["psl/mysql", "quaint/mysql"] -mysql-native = ["mysql", "quaint/pooled"] +mysql-native = ["mysql", "quaint/mysql-native", "quaint/pooled"] mssql = ["psl/mssql", "quaint/mssql"] -mssql-native = ["mssql", "quaint/pooled"] +mssql-native = ["mssql", "quaint/mssql-native", "quaint/pooled"] cockroachdb = ["psl/cockroachdb", "quaint/postgresql"] -cockroachdb-native = ["cockroachdb", "quaint/pooled"] +cockroachdb-native = ["cockroachdb", "quaint/postgresql-native", "quaint/pooled"] all-native = [ "postgresql-native", "sqlite-native",