Skip to content

Commit 4b2af89

Browse files
authored
Merge pull request #7 from d-oit/develop
Merge develop into main
2 parents 4dd0a50 + 7e17856 commit 4b2af89

File tree

5 files changed

+19
-39
lines changed

5 files changed

+19
-39
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.1.2] - 2025-01-09
8+
## [0.1.2] - 2025-10-09
99

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

2526
## [0.1.1] - 2025-10-09
2627

@@ -74,4 +75,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7475
- CI/CD workflows for continuous integration, documentation generation, and automated releases.
7576
- Agent-based development system for collaborative and automated code management.
7677
- Benchmarks and performance tests to ensure optimal scanning speed.
77-
- Test suites across crates for reliability and code quality.
78+
- Test suites across crates for reliability and code quality.

Cargo.lock

Lines changed: 2 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ ignore = "0.4"
4141
# Concurrency
4242
rayon = "1.10"
4343
num_cpus = "1.16"
44-
tokio = { version = "1.0", features = ["fs", "rt-multi-thread"] }
44+
tokio = { version = "1.0", features = ["fs", "rt-multi-thread", "time", "sync", "macros"] }
45+
46+
# Logging and Monitoring
47+
tracing = "0.1"
48+
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
49+
sysinfo = "0.30"
4550

4651
# Error Handling
4752
thiserror = "1.0"

crates/cli/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ ignore = { workspace = true }
2020
git2 = { workspace = true, optional = true }
2121
num_cpus = { workspace = true }
2222
rayon = { workspace = true }
23-
tokio = { version = "1.0", features = ["full"] }
24-
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
23+
tokio = { workspace = true }
24+
tracing = { workspace = true }
25+
tracing-subscriber = { workspace = true }
26+
sysinfo = { workspace = true }
2527

2628
code-guardian-core = { path = "../core" }
2729
code-guardian-storage = { path = "../storage" }
@@ -35,4 +37,3 @@ tempfile = "3.0"
3537
[features]
3638
default = []
3739
git = ["git2"]
38-

crates/core/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ toml = "0.8"
2222
uuid = { version = "1.0", features = ["v4"] }
2323
memmap2 = "0.9"
2424
smallvec = { version = "1.13", features = ["union"] }
25-
tokio = { version = "1.0", features = ["full"] }
26-
tracing = "0.1"
27-
sysinfo = "0.30"
25+
26+
tracing = "0.1"
27+
sysinfo = "0.30"
28+
tokio = { workspace = true }
2829

2930
[dev-dependencies]
3031
tempfile = { workspace = true }

0 commit comments

Comments
 (0)