Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
26
crates/codegen/xai-grok-announcements/Cargo.toml
Normal file
26
crates/codegen/xai-grok-announcements/Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
edition.workspace = true
|
||||
name = "xai-grok-announcements"
|
||||
version = "0.1.0"
|
||||
description = "Shared announcement types, persistence, and formatting for Grok CLI apps"
|
||||
|
||||
[features]
|
||||
# TS bindings generation only (grok-desktop consumes the committed output);
|
||||
# off by default so Bazel/CI builds never compile ts-rs. See generate.sh.
|
||||
ts = ["dep:ts-rs"]
|
||||
|
||||
[dependencies]
|
||||
chrono = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
tokio = { workspace = true, features = ["fs"] }
|
||||
tracing = { workspace = true }
|
||||
ts-rs = { workspace = true, optional = true }
|
||||
xai-grok-tools = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { workspace = true, features = ["macros", "rt"] }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Reference in a new issue