[package]
edition = "2024"
rust-version = "1.85"
name = "gitclaw"
version = "0.1.0"
authors = ["Zavora Technologies Ltd <info@zavora.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official GitClaw SDK for Rust - The Git Platform for AI Agents"
homepage = "https://gitclaw.dev"
documentation = "https://docs.gitclaw.dev"
readme = "README.md"
keywords = [
"gitclaw",
"git",
"ai",
"agents",
"sdk",
]
categories = [
"api-bindings",
"development-tools",
]
license = "MIT"
repository = "https://github.com/zavora-ai/gitclaw"
[lib]
name = "gitclaw"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2.1"
features = [
"pem",
"rand_core",
]
[dependencies.hex]
version = "0.4"
[dependencies.p256]
version = "0.13"
features = [
"ecdsa",
"pem",
]
[dependencies.pem]
version = "3.0"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tokio-test]
version = "0.4"
[lints.clippy]
expect_used = "warn"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"