2026-07-16 06:46:02 +01:00
|
|
|
[package]
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
name = "xai-grok-hooks"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
description = "Runtime hook system for Grok — file-based discovery, command execution, and policy enforcement"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
fastrand = { workspace = true }
|
|
|
|
|
regex = { workspace = true }
|
|
|
|
|
reqwest = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
shellexpand = "3.1"
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["process", "rt", "macros", "time"] }
|
2026-07-25 18:44:42 +00:00
|
|
|
toml = { workspace = true }
|
2026-07-16 06:46:02 +01:00
|
|
|
tracing = { workspace = true }
|
|
|
|
|
url = { workspace = true }
|
|
|
|
|
xai-grok-config = { workspace = true }
|
|
|
|
|
xai-grok-tools = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|