-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "llkv-sql"
description = "SQL interface for the LLKV toolkit."
authors.workspace = true
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
publish.workspace = true
keywords = ["database", "sql", "arrow", "parser", "query"]
categories = ["database-implementations", "parser-implementations"]
readme = "README.md"
[package.metadata.cargo-udeps.ignore]
# List dependency names to ignore for this package
normal = []
development = ["llkv-test-utils"]
build = []
[dependencies]
arrow = { workspace = true, default-features = false }
llkv-column-map.workspace = true
llkv-compute.workspace = true
llkv-executor.workspace = true
llkv-expr.workspace = true
llkv-plan.workspace = true
llkv-result.workspace = true
llkv-runtime.workspace = true
llkv-storage.workspace = true
llkv-table.workspace = true
llkv-transaction.workspace = true
llkv-types.workspace = true
regex.workspace = true
rustc-hash.workspace = true
simd-r-drive-entry-handle.workspace = true
sqlparser.workspace = true
tracing.workspace = true
[dev-dependencies]
llkv-storage = { workspace = true, features = ["simd-r-drive-support"] }
tempfile.workspace = true
[lints]
workspace = true