aboutsummaryrefslogtreecommitdiff
path: root/crates/vcs_data
Commit message (Collapse)AuthorAgeFilesLines
* Fix Clippy warnings and optimize code魏曹先生2025-10-132-5/+5
| | | | | | | | | - Fix let_underscore_future warning by properly awaiting async functions - Make accept_import function async to match add_mapping usage - Propagate errors properly with ? operator instead of ignoring them - Replace manual Default implementation with derive attribute - Replace vec! with array literal to avoid useless_vec warning - All tests pass and code is now Clippy clean
* feat: Add connection infrastructure and documentation魏曹先生2025-10-121-0/+31
| | | | | | - Implement action service for connection handling - Add error types for connection operations - Create todo.md for project tracking
* feat: Update data configuration structures魏曹先生2025-10-123-40/+99
| | | | | - Add new configuration fields for local and vault data - Remove outdated todo.txt file
* chore: update workspace configuration and dependencies魏曹先生2025-10-061-0/+4
| | | | | | - Add examples to workspace members - Update vcs_data dependencies structure - Fix library re-export paths in main lib.rs
* Move vcs crate to vcs_data for better separation of concerns魏曹先生2025-10-0624-0/+2900
- Rename vcs crate to vcs_data to clearly define data layer - Maintain all existing data structures and functionality - Update dependencies to include action_system integration - Preserve test structure in vcs_data_test directory