-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (56 loc) · 1.69 KB
/
Cargo.toml
File metadata and controls
71 lines (56 loc) · 1.69 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
[package]
name = "fluux-agent"
version = "0.2.0"
edition = "2021"
authors = ["ProcessOne <contact@process-one.net>"]
description = "An AI agent runtime that connects to any XMPP server via component protocol"
license = "Apache-2.0"
repository = "https://github.com/processone/fluux-agent"
readme = "README.md"
keywords = ["xmpp", "ai", "agent", "llm", "jabber"]
categories = ["network-programming"]
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# XMPP — on part sur une implémentation manuelle du component protocol
# xmpp-rs est trop haut niveau et orienté client, pas composant
tokio-native-tls = "0.3"
# XML parsing pour les stanzas XMPP
quick-xml = { version = "0.36", features = ["async-tokio"] }
# HTTP client pour l'API LLM
reqwest = { version = "0.12", features = ["json", "stream"] }
# Sérialisation
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Crypto (SHA-1 for XEP-0114 handshake + SASL SCRAM)
sha1 = "0.10"
hex = "0.4"
hmac = "0.12"
pbkdf2 = { version = "0.12", features = ["simple"] }
base64 = "0.22"
rand = "0.8"
native-tls = "0.2"
# Async utils
futures = "0.3"
async-trait = "0.1"
# Identifiants uniques
uuid = { version = "1", features = ["v4"] }
# SSE streaming (pour Claude API)
eventsource-stream = "0.2"
reqwest-eventsource = "0.6"
# Env var substitution dans la config
shellexpand = "3"
anyhow = "1.0.101"
# URL parsing (for file download validation)
url = "2"
# Date/time (session timestamps)
chrono = "0.4"
# HTML to text conversion (for url_fetch skill)
html2text = "0.14"
[dev-dependencies]
tempfile = "3"
filetime = "0.2"