forked from chrishayuk/larql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (60 loc) · 1.51 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (60 loc) · 1.51 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
[workspace]
resolver = "2"
members = [
# larql-specific
"crates/larql-models",
"crates/larql-compute",
"crates/larql-compute-metal",
"crates/larql-core",
"crates/larql-vindex",
"crates/larql-vindex-spec",
"crates/larql-inference",
"crates/larql-kv",
"crates/larql-lql",
"crates/larql-cli",
"crates/larql-server",
"crates/larql-router",
"crates/larql-router-protocol",
"crates/larql-python",
# boundary codec (Phase 1-3 of BOUNDARY_REF_PROTOCOL)
"crates/larql-boundary",
# portable (extract to sibling repos later, names stable)
"crates/model-compute",
]
default-members = [
"crates/larql-models",
"crates/larql-compute",
"crates/larql-compute-metal",
"crates/larql-core",
"crates/larql-vindex",
"crates/larql-vindex-spec",
"crates/larql-inference",
"crates/larql-kv",
"crates/larql-lql",
"crates/larql-cli",
"crates/larql-server",
"crates/larql-router",
"crates/larql-router-protocol",
"crates/larql-boundary",
"crates/model-compute",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
authors = []
license = "Apache-2.0"
repository = "https://github.com/chrishayuk/chuk-larql-rs"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
[profile.dev]
debug = "line-tables-only"
split-debuginfo = "unpacked"
[profile.dev.package."*"]
debug = false
[profile.test]
debug = "line-tables-only"
[profile.test.package."*"]
debug = false