forked from elasticdotventures/__b00t__
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.48 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
[workspace]
members = [
"b00t-cli",
"b00t-mcp",
"b00t-c0re-lib",
"b00t-lib-chat",
"b00t-grok",
"k0mmand3r",
"b00t-py",
"b00t-ipc",
]
resolver = "2"
[workspace.package]
# 🤓 Version management centralized in b00t-c0re-lib
# All workspace crates inherit from the single source of truth
version = "0.7.35"
edition = "2024"
authors = ["Brian Horakh <brian@promptexecution.com>"]
license = "MIT"
repository = "https://github.com/elasticdotventures/dotfiles"
[workspace.dependencies]
# Workspace members
b00t-cli = { path = "b00t-cli" }
b00t-c0re-lib = { path = "b00t-c0re-lib" }
b00t-grok = { path = "b00t-grok", default-features = false }
b00t-chat = { path = "b00t-lib-chat" }
# Common dependencies that could be shared across workspace members
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9"
clap = { version = "4.5.4", features = ["derive", "env"] }
regex = "1.10.5"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.34.0", features = ["full"] }
rmcp = { version = "0.8.5", features = ["client", "transport-io", "server", "macros", "schemars", "transport-streamable-http-server", "transport-worker", "transport-child-process"] }
tracing = "0.1"
[workspace.lints.rust]
unused_must_use = "warn"
dead_code = "warn"
[workspace.lints.clippy]
pedantic = "warn"
cargo = "warn"
# Allow some pedantic lints that are too noisy
module_name_repetitions = "allow"
similar_names = "allow"
too_many_lines = "allow"