diff --git a/Cargo.toml b/Cargo.toml index 640fbf61..23117576 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ lance-io = { "version" = "=1.0.0-beta.8", default-features = false, "tag" = "v1. lance-index = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } lance-linalg = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } lance-namespace = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } -lance-namespace-impls = { "version" = "=1.0.0-beta.8", "features" = ["dir-aws", "dir-gcp", "dir-azure", "dir-oss", "rest"], "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } +lance-namespace-impls = { "version" = "=1.0.0-beta.8", default-features = false, "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } lance-table = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } lance-testing = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } lance-datafusion = { "version" = "=1.0.0-beta.8", "tag" = "v1.0.0-beta.8", "git" = "https://github.com/lance-format/lance.git" } diff --git a/rust/lancedb/Cargo.toml b/rust/lancedb/Cargo.toml index 7790f05d..b0fe2ad4 100644 --- a/rust/lancedb/Cargo.toml +++ b/rust/lancedb/Cargo.toml @@ -105,12 +105,12 @@ test-log = "0.2" [features] default = ["aws", "gcs", "azure", "dynamodb", "oss"] -aws = ["lance/aws", "lance-io/aws"] -oss = ["lance/oss", "lance-io/oss"] -gcs = ["lance/gcp", "lance-io/gcp"] -azure = ["lance/azure", "lance-io/azure"] +aws = ["lance/aws", "lance-io/aws", "lance-namespace-impls/dir-aws"] +oss = ["lance/oss", "lance-io/oss", "lance-namespace-impls/dir-oss"] +gcs = ["lance/gcp", "lance-io/gcp", "lance-namespace-impls/dir-gcp"] +azure = ["lance/azure", "lance-io/azure", "lance-namespace-impls/dir-azure"] dynamodb = ["lance/dynamodb", "aws"] -remote = ["dep:reqwest", "dep:http"] +remote = ["dep:reqwest", "dep:http", "lance-namespace-impls/rest"] fp16kernels = ["lance-linalg/fp16kernels"] s3-test = [] bedrock = ["dep:aws-sdk-bedrockruntime"]