Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
32 lines
960 B
TOML
32 lines
960 B
TOML
[package]
|
|
name = "kei-git-gitlab"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "GitBackend impl for GitLab.com SaaS (and self-hosted via GITLAB_URL). REST API v4 + PRIVATE-TOKEN auth + git CLI shell-out for clone/push. Wave 5 atomar."
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "kei_git_gitlab"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
urlencoding = "2"
|
|
kei-runtime-core = { path = "../kei-runtime-core" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
|
|
[package.metadata.keisei]
|
|
backend = "gitlab"
|
|
trait = "GitBackend"
|
|
description = "GitLab.com SaaS GitBackend (REST v4, PRIVATE-TOKEN, url-encoded path-with-namespace)"
|
|
authors = ["Denis Parfionovich <info@greendragon.info>"]
|