diff --git a/Cargo.toml b/Cargo.toml index be792e088..00f8de46d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,6 @@ [workspace] resolver = "2" -package.version = "0.1.0" -package.edition = "2021" -package.license = "Apache-2.0" - members = [ "crates/connectors/ndc-postgres", "crates/query-engine/execution", diff --git a/crates/connectors/ndc-postgres/Cargo.toml b/crates/connectors/ndc-postgres/Cargo.toml index 0ffb224b2..8beef92e6 100644 --- a/crates/connectors/ndc-postgres/Cargo.toml +++ b/crates/connectors/ndc-postgres/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "ndc-postgres" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" default-run = "ndc-postgres" diff --git a/crates/documentation/openapi/Cargo.toml b/crates/documentation/openapi/Cargo.toml index 325db40c8..2225b35da 100644 --- a/crates/documentation/openapi/Cargo.toml +++ b/crates/documentation/openapi/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "openapi-generator" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [dependencies] insta = { version = "1.34.0", features = ["json"] } diff --git a/crates/query-engine/execution/Cargo.toml b/crates/query-engine/execution/Cargo.toml index 70e178476..e03aaa9c7 100644 --- a/crates/query-engine/execution/Cargo.toml +++ b/crates/query-engine/execution/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "query-engine-execution" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [dependencies] query-engine-sql = { path = "../sql" } diff --git a/crates/query-engine/metadata/Cargo.toml b/crates/query-engine/metadata/Cargo.toml index 2287f9d54..a4ef27a20 100644 --- a/crates/query-engine/metadata/Cargo.toml +++ b/crates/query-engine/metadata/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "query-engine-metadata" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [dependencies] schemars = { version = "0.8.16", features = ["smol_str"] } diff --git a/crates/query-engine/sql/Cargo.toml b/crates/query-engine/sql/Cargo.toml index 6ce2c5602..78750f199 100644 --- a/crates/query-engine/sql/Cargo.toml +++ b/crates/query-engine/sql/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "query-engine-sql" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [dependencies] serde_json = "1.0.108" diff --git a/crates/query-engine/translation/Cargo.toml b/crates/query-engine/translation/Cargo.toml index 002f72f65..fbda3d0b4 100644 --- a/crates/query-engine/translation/Cargo.toml +++ b/crates/query-engine/translation/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "query-engine-translation" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [dependencies] diff --git a/crates/tests/databases-tests/Cargo.toml b/crates/tests/databases-tests/Cargo.toml index d4f3fb677..8888d7f98 100644 --- a/crates/tests/databases-tests/Cargo.toml +++ b/crates/tests/databases-tests/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "databases-tests" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [features] # We only run the AWS Aurora tests if this feature is enabled. diff --git a/crates/tests/tests-common/Cargo.toml b/crates/tests/tests-common/Cargo.toml index 3aa9d8d09..68c042e40 100644 --- a/crates/tests/tests-common/Cargo.toml +++ b/crates/tests/tests-common/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "tests-common" -version.workspace = true -edition.workspace = true -license.workspace = true +version = "0.1.0" +edition = "2021" +license = "Apache-2.0" [lib] name = "tests_common"