-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (65 loc) · 2.1 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (65 loc) · 2.1 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
[workspace]
resolver = "2"
exclude = [
"vendor/candle",
"vendor/tauri",
"vendor/tokenizers",
]
members = [
"crates/masterd-chat-engine",
"crates/masterd-atom-runtime",
"crates/masterd-core",
"crates/masterd-data",
"crates/masterd-index",
"crates/masterd-midi",
"crates/masterd-embed-engine",
"crates/masterd-pipeline",
"crates/masterd-prompt-core",
"crates/masterd-runtime-tune",
"crates/masterd-sidecars",
"crates/masterd-ui-contract",
"crates/model2vec-rs",
"crates/rs_rotorquant_codec",
"crates/rs_turboquant_codec",
"apps/masterd-bootstrap",
"apps/masterd-engine-check",
"apps/masterd-ingest",
"apps/masterd-midi-player",
"apps/masterd-tune",
]
# masterd-desktop-tauri has its own workspace to avoid Tauri vendor workspace
# inheritance conflicts — see apps/masterd-desktop-tauri/Cargo.toml
[workspace.package]
edition = "2024"
license = "MIT"
version = "0.1.0"
authors = ["Carlos Fundora <sentseven@gmail.com>"]
[workspace.dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
serde_json = "1.0"
sha2 = "0.10"
walkdir = "2.5"
rusqlite = { version = "0.32", features = ["bundled"] }
redis = "0.27"
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "blocking", "rustls-tls"] }
tokio = { version = "1.52.3", features = ["rt-multi-thread", "sync"] }
lancedb = "0.21.1"
tree-sitter = "0.24.7"
tree-sitter-rust = "0.24.0"
regex = "1.10"
[workspace.lints.rust]
unexpected_cfgs = { level = "allow", priority = 0 }
dead_code = { level = "allow", priority = 0 }
unused_imports = { level = "allow", priority = 0 }
unused_variables = { level = "allow", priority = 0 }
unused_mut = { level = "allow", priority = 0 }
deprecated = { level = "allow", priority = 0 }
mismatched_lifetime_syntaxes = { level = "allow", priority = 0 }
irrefutable_let_patterns = { level = "allow", priority = 0 }