-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 848 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
38
39
[workspace]
resolver = "2"
members = [
"vibes-cli",
"vibes-core",
"vibes-evals",
"vibes-iggy",
"vibes-models",
"vibes-observe",
"vibes-paths",
"vibes-plugin-api",
"vibes-server",
"vibes-introspection",
"vibes-tui",
"plugins/vibes-groove",
]
exclude = ["examples/plugins/hello-plugin"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/run-vibes/vibes"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
async-trait = "0.1"
tracing = "0.1"
uuid = { version = "1", features = ["v4", "v7", "serde"] }
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
notify = "6"
tempfile = "3"