[package]
edition = "2024"
rust-version = "1.94"
name = "gridwork"
version = "0.0.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GridWork — an agent operating system for the terminal. The gw binary: the CLI that speaks the kernel's local protocol."
homepage = "https://gridwork.dev"
readme = "README.md"
keywords = [
"agent",
"terminal",
"orchestration",
"tui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/GridWork-dev/gridwork"
[lib]
name = "gridwork"
path = "src/lib.rs"
[[bin]]
name = "gw"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.base64]
version = "0.23.0"
[dependencies.gwk-domain]
version = "0.0.2"
[dependencies.gwk-kernel]
version = "0.0.2"
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11.0"
[dependencies.tokio]
version = "1.53.1"
features = [
"io-std",
"io-util",
"macros",
"net",
"rt",
"rt-multi-thread",
"signal",
"time",
]
default-features = false
[dev-dependencies.sqlx]
version = "0.9.0"
features = [
"postgres",
"runtime-tokio",
"tls-rustls-ring-native-roots",
"json",
]
default-features = false
[lints.clippy]
unwrap_used = "deny"
[lints.rust]
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "deny"