-
Notifications
You must be signed in to change notification settings - Fork 155
/
Cargo.toml
117 lines (106 loc) · 3.78 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
[package]
name = "pathway"
version = "0.16.1"
edition = "2021"
publish = false
rust-version = "1.79"
license = "BUSL-1.1"
[lib]
name = "pathway_engine"
crate-type = ["cdylib", "lib"]
test = false
doctest = false
[dev-dependencies]
assert_matches = "1.5.0"
eyre = "0.6.12"
mockall = "0.13.1"
[dependencies]
arc-swap = "1.7.1"
arcstr = { version = "1.2.0", default-features = false, features = ["serde", "std"] }
async-nats = "0.37.0"
base32 = "0.5.1"
base64 = "0.22.1"
bincode = "1.3.3"
bitflags = { version = "2.6.0", features = ["std"] } # Hack to keep features unified between normal and dev deps
bytes = "1.7.1"
cached = "0.53.1"
cfg-if = "1.0.0"
chrono = { version = "0.4.38", features = ["std", "clock"], default-features = false }
chrono-tz = "0.9.0"
crossbeam-channel = "0.5.13"
csv = "1.3.0"
deltalake = { version = "0.19.0", features = ["datafusion", "s3-native-tls"] }
derivative = "2.2.0"
differential-dataflow = { path = "./external/differential-dataflow" }
ed25519-dalek = { version = "2.1.1", features = ["serde", "pkcs8"] }
elasticsearch = "8.15.0-alpha.1"
futures = "0.3.30"
glob = "0.3.1"
hex = "0.4.3"
hyper = { version = "0.14", features = ["server"] }
id-arena = "2.2.1"
itertools = "0.13.0"
jemallocator = { version = "0.5.4", features = ["stats", "disable_initial_exec_tls"] }
jmespath = "0.3.0"
libc = "0.2.158"
log = { version = "0.4.22", features = ["std"] }
mongodb = { version = "3.1.0", features = ["sync"] }
ndarray = { version = "0.15.6", features = ["serde"] }
nix = { version = "0.29.0", features = ["fs", "user", "resource"] }
num-integer = "0.1.46"
numpy = "0.21.0"
once_cell = "1.19.0"
opentelemetry = { version = "0.24.0", features = ["trace", "metrics"] }
opentelemetry-otlp = { version = "0.17.0", features = ["default", "tls", "tls-roots", "metrics"] }
opentelemetry-semantic-conventions = "0.16.0"
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio", "rt-tokio-current-thread"] }
ordered-float = { version = "4.2.2", features = ["serde"] }
postgres = { version = "0.19.8", features = ["with-chrono-0_4", "with-serde_json-1"] }
prometheus-client = "0.22.3"
pyo3 = { version = "0.21.2", features = ["abi3-py310", "multiple-pymethods"] }
pyo3-asyncio = { version = "0.21.0", package = "pyo3-asyncio-0-21" }
pyo3-log = "0.10.0"
rand = "0.8.5"
rayon = "1.10.0"
rdkafka = { version = "0.36.2", features = ["ssl-vendored", "cmake-build", "zstd"] }
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["blocking", "json"] }
rusqlite = { version = "0.32.1", features = ["bundled"] }
rust-s3 = { version = "0.34.0", features = ["sync-native-tls-vendored", "sync-native-tls", "fail-on-err"], default-features = false }
scopeguard = "1.2.0"
send_wrapper = "0.6.0"
serde = { version = "1.0.210", features = ["derive", "rc"] }
serde_json = "1.0"
serde_with = "3.9.0"
smallvec = { version = "1.13.2", features = ["union", "const_generics"] }
syn = { version = "2.0.77", features = ["default", "full", "visit", "visit-mut"] } # Hack to keep features unified between normal and build deps
sysinfo = "0.31.4"
tantivy = "0.22.0"
tempfile = "3.12.0"
thiserror = "1.0.63"
timely = { path = "./external/timely-dataflow/timely", features = ["bincode"] }
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
tonic = { version = "0.12.2", features = ["tls-native-roots"] }
usearch = "2.15.3"
uuid = { version = "1.10.0", features = ["v4"] }
xxhash-rust = { version = "0.8.12", features = ["xxh3"] }
[features]
unlimited-workers = []
# Helpful for using external memory profilers
standard-allocator = []
# YOLO!
yolo-id64 = []
yolo-id32 = []
# Licensing
enterprise = ["unlimited-workers"]
[profile.dev]
opt-level = 3
debug = "line-tables-only"
[profile.profiling]
inherits = "release"
debug = "line-tables-only"
[profile.debugging]
inherits = "dev"
debug = "full"
[build-dependencies]
pyo3-build-config = "0.21.2"