-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 844 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/datacortex-core",
"crates/datacortex-cli",
"crates/datacortex-neural",
"crates/datacortex-python",
]
exclude = [
"vector-plugin",
]
[workspace.package]
version = "0.6.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/RushikeshMore/datacortex"
homepage = "https://github.com/RushikeshMore/datacortex"
authors = ["Rushikesh More"]
rust-version = "1.85"
[workspace.dependencies]
datacortex-core = { path = "crates/datacortex-core", version = "0.6.0" }
datacortex-neural = { path = "crates/datacortex-neural" }
crc32fast = "1"
memchr = "2"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
zstd = "0.13"
brotli = "7"
rayon = "1.10"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1