forked from berabuddies/puffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
117 lines (114 loc) · 3.6 KB
/
Copy pathCargo.toml
File metadata and controls
117 lines (114 loc) · 3.6 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[workspace]
members = [
"benchmark/genskill/ladybird",
"crates/puffer-cli",
"crates/puffer-config",
"crates/puffer-connector-core",
"crates/puffer-connector-discord",
"crates/puffer-connector-email",
"crates/puffer-connector-matrix",
"crates/puffer-connector-slack",
"crates/puffer-connector-telegram",
"crates/puffer-core",
"crates/puffer-logging",
"crates/puffer-media",
"crates/puffer-mcp-oauth",
"crates/puffer-observability",
"crates/puffer-provider-openai",
"crates/puffer-provider-registry",
"crates/puffer-resources",
"crates/puffer-runner-api",
"crates/puffer-runner-local",
"crates/puffer-runner-grpc",
"crates/puffer-secrets",
"crates/puffer-slack",
"crates/puffer-tool-runner",
"crates/puffer-session-store",
"crates/puffer-skill-evolution",
"crates/puffer-subscriber-email",
"crates/puffer-subscriber-runtime",
"crates/puffer-subscriber-telegram-user",
"crates/puffer-subscriptions",
"crates/puffer-test-support",
"crates/puffer-tools",
"crates/puffer-transport-anthropic",
"crates/puffer-tui",
"crates/puffer-workflow",
]
default-members = ["crates/puffer-cli"]
# Vendored third-party (MIT) — its own cargo workspace, built separately via
# scripts/build-cua-driver.sh. Excluded so it never folds into puffer's build.
exclude = ["vendor/cua-driver"]
resolver = "2"
[patch.crates-io]
grammers-session = { path = "vendor/grammers-session" }
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "MIT"
[workspace.dependencies]
anyhow = "1.0.100"
arboard = "3.6.1"
base64 = "0.22.1"
clap = { version = "4.5.53", features = ["derive"] }
crossterm = "0.29.0"
dirs = "6.0.0"
html2text = "0.13.5"
glob = "0.3.3"
fslock = "0.2.1"
indexmap = { version = "2.12.1", features = ["serde"] }
ipnet = "2.11.0"
insta = "1.44.1"
notify = "6"
jsonschema = { version = "0.45.1", default-features = false }
libc = "0.2"
libloading = "0.8.9"
psl = "2.1.163"
qrcode = "0.14.1"
ratatui = "0.29.0"
# Anthropic's official Rust SDK for the Model Context Protocol. Pinned to the
# same major version codex uses (0.15) and opted into the client + server +
# child-process transport so the runner can drive subprocess MCP servers and
# ship a tiny in-tree stub server for tests.
rmcp = { version = "0.15.0", default-features = false, features = [
"client",
"server",
"macros",
"schemars",
"base64",
"elicitation",
"auth",
"transport-child-process",
"transport-io",
"transport-streamable-http-client",
"transport-streamable-http-client-reqwest",
"transport-streamable-http-server",
] }
tokio = { version = "1.51", features = [
"rt-multi-thread",
"macros",
"sync",
"io-util",
"io-std",
"process",
"time",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-appender = "0.2"
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "json", "multipart", "rustls-tls", "socks"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.145", features = ["preserve_order"] }
serde_yaml = "0.9.34"
shell-words = "1.1.0"
sha2 = "0.10.9"
tempfile = "3.23.0"
thiserror = "2.0.17"
regex = "1.10"
rusqlite = { version = "0.31", features = ["bundled-sqlcipher-vendored-openssl"] }
rand = "0.8"
time = { version = "0.3.44", features = ["formatting", "local-offset", "parsing"] }
toml = "0.9.8"
tungstenite = { version = "0.24", default-features = false, features = ["handshake", "rustls-tls-webpki-roots"] }
url = "2.5.7"
uuid = { version = "1.18.1", features = ["serde", "v4"] }