mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2025-12-24 15:39:29 +01:00
- Extracted functionality from the `src/` directory into individual crates within the `crates/` directory. This improves modularity, organization, and separation of concerns. - Migrated modules include: models, evaluator, ui, gitlab, utils, logging, github, matrix, executor, runtime, parser, and validators. - Removed the original source files and directories from `src/` after successful migration. - This change sets the stage for better code management and potentially independent development/versioning of workspace members.
20 lines
461 B
TOML
20 lines
461 B
TOML
[package]
|
|
name = "github"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "github functionality for wrkflw"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Add other crate dependencies as needed
|
|
models = { path = "../models" }
|
|
|
|
# External dependencies from workspace
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
thiserror.workspace = true
|
|
lazy_static.workspace = true
|
|
regex.workspace = true
|