-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathCargo.toml
More file actions
136 lines (127 loc) · 4.18 KB
/
Copy pathCargo.toml
File metadata and controls
136 lines (127 loc) · 4.18 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
[workspace]
resolver = "2"
members = [
"crates/omnigraph-compiler",
"crates/omnigraph-storage",
"crates/omnigraph",
"crates/omnigraph-cli",
"crates/omnigraph-api-types",
"crates/omnigraph-cluster",
"crates/omnigraph-azure-admission",
"crates/omnigraph-bench",
"crates/omnigraph-policy",
"crates/omnigraph-server",
"crates/omnigraph-dst",
"crates/omnigraph-gqt",
"tools/omnigraph-vocabulary-guard",
]
default-members = [
"crates/omnigraph",
"crates/omnigraph-cli",
"crates/omnigraph-server",
]
[workspace.dependencies]
arrow-array = "58"
arrow-ipc = "58"
arrow-json = "58"
arrow-schema = "58"
arrow-select = "58"
arrow-cast = { version = "58", features = ["prettyprint"] }
arrow-ord = "58"
arrow-string = "58"
datafusion = { version = "54", default-features = false, features = ["nested_expressions", "string_expressions"] }
datafusion-physical-plan = "54"
datafusion-physical-expr = "54"
datafusion-execution = "54"
datafusion-common = "54"
datafusion-expr = "54"
datafusion-functions-aggregate = "54"
# Lance 11.0.0 (crates.io), kept in lockstep. Explicit V2_2 writes and the
# late-payload KNN ordering fence remain required; see docs/dev/lance.md.
lance = { version = "=11.0.0", default-features = false, features = ["aws", "azure"] }
lance-core = "=11.0.0"
# lance-io + rand: consumed only by omnigraph-dst (fault injection at the
# Lance IO seam; the harness PRNG seeds).
lance-io = { version = "=11.0.0", default-features = false }
rand = "0.9"
# RowAddrTreeMap moved from lance-core::utils::mask to the new lance-select crate in 9.x.
lance-select = "=11.0.0"
lance-datafusion = "=11.0.0"
lance-file = "=11.0.0"
lance-index = "=11.0.0"
lance-linalg = "=11.0.0"
lance-namespace = "=11.0.0"
lance-namespace-impls = "=11.0.0"
lance-table = "=11.0.0"
# Persistent FTS certificates identify this analyzer generation. A change needs
# the RFC 0043 compatibility audit, not just a transitive lockfile refresh.
lance-tokenizer = "=11.0.0"
frostem = { version = "=1.20260821.3", default-features = false }
stop-words = { version = "=0.10.0", default-features = false }
unicode-normalization = "=0.1.25"
ulid = "1"
futures = "0.3"
async-trait = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
pest = "2"
pest_derive = "2"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "signal", "sync"] }
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
color-eyre = "0.6"
tempfile = "3"
ahash = "0.8"
arc-swap = "1"
base64 = "0.22"
bytes = "1"
ariadne = "0.4"
regex = "1"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
object_store = { version = "0.13.2", default-features = false, features = ["aws", "azure", "fs"] }
# fail-parallel instead of fail: the failpoint registry becomes a value
# (SlateDB precedent) instead of a process-global, so a test harness can
# own faults per-universe.
fail-parallel = "0.6"
time = { version = "0.3", features = ["formatting"] }
axum = { version = "0.8", features = ["json", "macros"] }
utoipa = { version = "5", features = ["axum_extras"] }
url = "2"
cedar-policy = "4.9"
sha2 = "0.10"
subtle = "2"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "visit"] }
walkdir = "2"
uuid = { version = "1", features = ["v4"] }
hmac = "0.12"
httpdate = "1"
[workspace.lints.clippy]
# Nested guards often read clearer than one merged condition (Polars allows this too).
collapsible_if = "allow"
# Streaming/recovery internals thread identity + authority + payload explicitly;
# a params-struct refactor is not earned yet.
too_many_arguments = "allow"
# DST: fast simulations that KEEP assertions — the slatedb pattern.
# Use: cargo test -p omnigraph-dst --profile dst
[profile.dst]
inherits = "test"
opt-level = 2
debug-assertions = true
overflow-checks = true
[profile.dev]
debug = 0
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = 2
lto = "thin"
codegen-units = 16
strip = true