forked from risinglightdb/risinglight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
106 lines (96 loc) · 2.67 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
[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]
anyhow = "1"
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.1"
crc32fast = "1"
csv = "1"
dirs = "5"
downcast-rs = "1"
egg = { version = "0.9.5", features = ["deterministic"] }
enum_dispatch = "0.3"
erased-serde = "0.3"
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.11"
minitrace = "0.4.0"
moka = { version = "0.11", features = ["future"] }
num-traits = "0.2"
ordered-float = { version = "3", features = ["serde"] }
parking_lot = "0.12"
parse-display = "0.8"
paste = "1"
pgwire = "0.15"
pretty-xmlish = "0.1"
prost = "0.11.0"
pyo3 = { version = "0.19", features = ["extension-module"], optional = true }
ref-cast = "1.0"
regex = "1"
risinglight_proto = "0.2"
rust_decimal = "1"
rustyline = "12"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
smallvec = { version = "1", features = ["serde"] }
sqllogictest = "0.14"
sqlparser = { version = "0.36", 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"] }
tempfile = "3"
test-case = "3"
[build-dependencies]
pyo3-build-config = { version = "0.19", optional = true }
[[bench]]
harness = false
name = "e2e"
[[bench]]
harness = false
name = "array"
[profile.bench]
codegen-units = 1
lto = 'thin'
[workspace]
members = ["proto", "tests/sqllogictest", "tests/sqlplannertest"]
[patch.crates-io]
risinglight_proto = { path = "proto" }
[lib]
name = "risinglight"
crate-type = ["cdylib", "rlib"]