Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2025-01-09
## [0.1.2] - 2025-10-09

### Fixed
- GitHub Actions release workflow binary name mismatch (code-guardian-cli vs code_guardian_cli)
Expand All @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Release workflow now extracts and uses proper changelog content
- Improved error handling in release process
- Updated existing v0.1.1 release with proper description
- Bump version to 0.1.1

## [0.1.1] - 2025-10-09

Expand Down Expand Up @@ -74,4 +75,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- CI/CD workflows for continuous integration, documentation generation, and automated releases.
- Agent-based development system for collaborative and automated code management.
- Benchmarks and performance tests to ensure optimal scanning speed.
- Test suites across crates for reliability and code quality.
- Test suites across crates for reliability and code quality.
32 changes: 2 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ ignore = "0.4"
# Concurrency
rayon = "1.10"
num_cpus = "1.16"
tokio = { version = "1.0", features = ["fs", "rt-multi-thread"] }
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time", "sync", "macros"] }

# Logging and Monitoring
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sysinfo = "0.30"

# Error Handling
thiserror = "1.0"
Expand Down
7 changes: 4 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ ignore = { workspace = true }
git2 = { workspace = true, optional = true }
num_cpus = { workspace = true }
rayon = { workspace = true }
tokio = { version = "1.0", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
sysinfo = { workspace = true }

code-guardian-core = { path = "../core" }
code-guardian-storage = { path = "../storage" }
Expand All @@ -35,4 +37,3 @@ tempfile = "3.0"
[features]
default = []
git = ["git2"]

7 changes: 4 additions & 3 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ toml = "0.8"
uuid = { version = "1.0", features = ["v4"] }
memmap2 = "0.9"
smallvec = { version = "1.13", features = ["union"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
sysinfo = "0.30"

tracing = "0.1"
sysinfo = "0.30"
tokio = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }
Expand Down