42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
license = "Apache-2.0"
|
|
name = "xai-grok-agent"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Agent builder, definition parsing, and system prompt assembly"
|
|
|
|
[dependencies]
|
|
dunce = { workspace = true }
|
|
xai-grok-hooks = { path = "../xai-grok-hooks" }
|
|
xai-grok-sampling-types = { path = "../xai-grok-sampling-types" }
|
|
xai-grok-tools = { path = "../xai-grok-tools" }
|
|
xai-token-estimation = { workspace = true }
|
|
minijinja = { version = "2", features = ["custom_syntax"] }
|
|
git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2"] }
|
|
regex = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "macros", "sync"] }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
ignore = { workspace = true }
|
|
dirs = "6"
|
|
xai-grok-config = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
strum = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
zeroize = "1"
|
|
xai-tool-types.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
default-bazel = []
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serial_test = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|