-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (70 loc) · 2.07 KB
/
Cargo.toml
File metadata and controls
76 lines (70 loc) · 2.07 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
[package]
name = "praxis"
version = "0.1.0"
edition = "2024"
description = "A self-evolving personal AI agent foundation"
license = "MIT"
# ── Optional feature flags ───────────────────────────────────────────────────
#
# tui — full-screen ratatui terminal dashboard (`praxis tui`)
# discord — Discord webhook adapter (`praxis discord`)
# slack — Slack Events API adapter (`praxis slack`)
#
# All three are on by default. To build a smaller binary, disable defaults
# and re-enable only what you need:
#
# cargo build --no-default-features --features tui
#
[features]
default = ["tui", "discord", "slack"]
tui = ["dep:crossterm", "dep:ratatui"]
discord = []
slack = []
[dependencies]
aes-gcm = "0.10"
async-stream = "0.3"
anyhow = "1"
env_logger = "0.11"
log = "0.4"
axum = { version = "0.7", features = ["json"] }
chrono = { version = "0.4", features = ["clock", "serde"] }
chrono-tz = "0.10"
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.28", optional = true }
ratatui = { version = "0.29", optional = true }
futures = "0.3"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "stream"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
rand = "0.8"
ed25519-dalek = "2"
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
tokio ={ version = "1", features = ["fs", "macros", "rt-multi-thread", "signal", "time"] }
tokio-stream = "0.1"
toml = "0.8"
tower-http = { version = "0.6", features = ["fs", "cors"] }
tokio-cron-scheduler = "0.13"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1"
base64 = "0.22"
zeroize = { version = "1", features = ["zeroize_derive"] }
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
tokio-test = "0.4"
[[bin]]
name = "praxis"
path = "src/main.rs"
[[bin]]
name = "praxis-watchdog"
path = "src/watchdog/main.rs"
[profile.release]
opt-level = 2
lto = false
strip = true