-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
66 lines (61 loc) · 1.84 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
[workspace]
resolver = "2"
members = [
"crates/*",
"examples",
"py-denormalized",
]
[workspace.package]
authors = [
"Matt Green <matt@denormalized.io>",
"Amey Chaugule <amey@denormalized.io>",
]
edition = "2021"
homepage = "https://github.com/probably-nothing-labs/denormalized"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/probably-nothing-labs/denormalized.git"
version = "0.0.1"
rust-version = "1.81.0"
description = "Embeddable stream processing engine"
[workspace.dependencies]
denormalized = { path = "crates/core" }
denormalized-common = { path = "crates/common" }
denormalized-orchestrator = { path = "crates/orchestrator" }
# datafusion = { path = "../arrow-datafusion/datafusion/core" }
datafusion = { git = "https://github.com/probably-nothing-labs/arrow-datafusion", rev = "d812edc349f1500dc74df1967feb53156e78b462" }
arrow = { version = "53.0.0", features = ["prettyprint"] }
arrow-array = { version = "53.0.0", default-features = false, features = [
"chrono-tz",
] }
arrow-schema = { version = "53.0.0", default-features = false }
arrow-ipc = { version = "53.0.0", default-features = false, features = ["lz4"] }
arrow-json = { version = "53.0.0" }
arrow-string = { version = "53.0.0", default-features = false }
arrow-ord = { version = "53.0.0", default-features = false }
apache-avro = { version = "0.16", default-features = false, features = [
"bzip",
"snappy",
"xz",
"zstandard",
] }
futures = "0.3"
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
tokio = { version = "1.36", features = [
"macros",
"rt",
"sync",
"rt-multi-thread",
] }
async-trait = "0.1.81"
rdkafka = "0.36.2"
log = "^0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22.1"
chrono = { version = "0.4.38" }
itertools = "0.13"
pyo3 = { version = "0.22.2" }
slatedb = "0.2.0"