-
Notifications
You must be signed in to change notification settings - Fork 214
/
Cargo.toml
123 lines (110 loc) · 2.89 KB
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[package]
edition = "2021"
name = "risinglight"
version = "0.2.0"
description = "An OLAP database system for educational purpose"
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/risinglightdb/risinglight"
repository = "https://github.com/risinglightdb/risinglight"
keywords = ["sql", "database", "embedded", "cli"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["jemalloc"]
jemalloc = ["tikv-jemallocator"]
python = ["pyo3", "pyo3-build-config"]
[dependencies]
ahash = "0.8"
anyhow = "1"
async-broadcast = "0.7"
async-recursion = "1"
async-stream = "0.3"
async-trait = "0.1"
binary-heap-plus = "0.5"
bit-set = "0.5"
bitvec = { version = "1", features = ["serde"] }
btreemultimap = "0.1"
bytes = "1"
chrono = { version = "0.4", features = ["clock", "std", "wasmbind"] }
clap = { version = "4", features = ["derive"] }
comfy-table = { version = "7", default-features = false }
console-subscriber = "0.2"
crc32fast = "1"
csv = "1"
dirs = "5"
downcast-rs = "1"
egg = { version = "0.9.5", features = ["deterministic"] }
enum_dispatch = "0.3"
erased-serde = "0.4"
futures = { version = "0.3", default-features = false, features = ["alloc"] }
futures-async-stream = "0.2"
humantime = "2"
indicatif = "0.17"
indoc = "2"
iter-chunks = "0.2"
itertools = "0.12"
minitrace = { version = "0.6", features = ["enable"] }
moka = { version = "0.12", features = ["future"] }
num-traits = "0.2"
ordered-float = { version = "4", features = ["serde"] }
parking_lot = "0.12"
parse-display = "0.9"
paste = "1"
pgwire = "0.20"
pin-project = "1"
pretty-xmlish = "0.1"
prost = "0.12"
pyo3 = { version = "0.21", features = ["extension-module"], optional = true }
ref-cast = "1.0"
regex = "1"
risinglight_proto = "0.2"
rust_decimal = "1"
rustyline = "14"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
smallvec = { version = "1", features = ["serde"] }
sqllogictest = "0.20"
sqlparser = { version = "0.45", features = ["serde"] }
thiserror = "1"
tikv-jemallocator = { version = "0.5", optional = true, features = [
"disable_initial_exec_tls",
] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"env-filter",
"parking_lot",
] }
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
glob = "0.3"
libtest-mimic = "0.7"
sqlplannertest = "0.1"
tempfile = "3"
test-case = "3"
[build-dependencies]
pyo3-build-config = { version = "0.21", optional = true }
[[test]]
name = "sqllogictest"
harness = false
[[test]]
name = "sqlplannertest"
harness = false
[[bench]]
harness = false
name = "e2e"
[[bench]]
harness = false
name = "array"
[[bench]]
harness = false
name = "tpch"
[workspace]
members = ["proto"]
[patch.crates-io]
risinglight_proto = { path = "proto" }
[lib]
name = "risinglight"
crate-type = ["cdylib", "rlib"]
[profile.release]
debug = true