| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| [package] |
| name = "analytic_engine" |
| |
| [package.license] |
| workspace = true |
| |
| [package.version] |
| workspace = true |
| |
| [package.authors] |
| workspace = true |
| |
| [package.edition] |
| workspace = true |
| |
| [features] |
| test = ["tempfile"] |
| wal-table-kv = ["wal/wal-table-kv"] |
| wal-message-queue = ["wal/wal-message-queue"] |
| wal-rocksdb = ["wal/wal-rocksdb"] |
| wal-local-storage = ["wal/wal-local-storage"] |
| |
| [dependencies] |
| # In alphabetical order |
| anyhow = { workspace = true } |
| arc-swap = "1.4.0" |
| arena = { workspace = true } |
| arrow = { workspace = true } |
| async-scoped = { version = "0.9.0", features = ["use-tokio"] } |
| async-stream = { workspace = true } |
| async-trait = { workspace = true } |
| atomic_enum = { workspace = true } |
| base64 = { workspace = true } |
| bytes_ext = { workspace = true } |
| cluster = { workspace = true } |
| codec = { workspace = true } |
| common_types = { workspace = true } |
| datafusion = { workspace = true } |
| future_ext = { workspace = true } |
| futures = { workspace = true } |
| generic_error = { workspace = true } |
| hash_ext = { workspace = true } |
| hex = { workspace = true } |
| horaedbproto = { workspace = true } |
| hyperloglog = { workspace = true } |
| id_allocator = { workspace = true } |
| itertools = { workspace = true } |
| lazy_static = { workspace = true } |
| logger = { workspace = true } |
| lru = { workspace = true } |
| macros = { workspace = true } |
| message_queue = { workspace = true } |
| meta_client = { workspace = true } |
| metric_ext = { workspace = true } |
| object_store = { workspace = true } |
| parquet = { workspace = true } |
| parquet_ext = { workspace = true } |
| prometheus = { workspace = true } |
| prost = { workspace = true } |
| remote_engine_client = { workspace = true } |
| reqwest = { workspace = true } |
| router = { workspace = true } |
| runtime = { workspace = true } |
| sampling_cache = { workspace = true } |
| serde = { workspace = true } |
| serde_json = { workspace = true } |
| size_ext = { workspace = true } |
| skiplist = { path = "../components/skiplist" } |
| smallvec = { workspace = true } |
| snafu = { workspace = true } |
| table_engine = { workspace = true } |
| table_kv = { workspace = true } |
| tempfile = { workspace = true, optional = true } |
| thiserror = { workspace = true } |
| time_ext = { workspace = true } |
| tokio = { workspace = true } |
| tonic = { workspace = true } |
| trace_metric = { workspace = true } |
| url = "2.2" |
| wal = { workspace = true } |
| xorfilter-rs = { workspace = true } |
| |
| [dev-dependencies] |
| common_types = { workspace = true, features = ["test"] } |
| env_logger = { workspace = true } |
| pin-project-lite = { workspace = true } |
| rand = { workspace = true } |
| tempfile = { workspace = true } |
| test_util = { workspace = true } |
| wal = { workspace = true, features = ["wal-message-queue", "wal-rocksdb", "wal-table-kv"] } |