aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAgeFilesLines
* Add sheet system with mapping macros and modules魏曹先生2026-02-121-16/+249
|
* Add sheet system and reorganize workspace魏曹先生2026-02-111-0/+4
| | | | | | | | - Add new "sheet" crate to workspace - Rename "systems/asset" to "systems/_asset" - Reorder workspace members and dependencies for clarity - Update constants with new paths for auth and rules - Add conditional compilation for system module
* Rename asset crate to asset_system魏曹先生2026-02-071-12/+12
|
* Add asset system with file locking and atomic writes魏曹先生2026-02-071-16/+67
|
* Add FFI support for constants with C-compatible functions魏曹先生2026-02-061-0/+10
|
* Add constants system with path generation macros魏曹先生2026-02-061-0/+57
|
* Remove examples and legacy code, update .gitignore魏曹先生2026-02-051-13/+0
| | | | | | | | - Delete examples directory and its example action system - Rename actions/ to legacy_actions/ and data/ to legacy_data/ - Update Cargo.toml license file reference - Move setup scripts to scripts/dev/ directory - Add todo.txt patterns to .gitignore
* Add support for Bincode config file format魏曹先生2026-01-021-0/+11
|
* Add sheet sharing functionality魏曹先生2025-12-251-1/+22
| | | | | | | - Add `rand` dependency for generating share IDs - Update share path to include sheet name subdirectory - Add mutable accessor for sheet ID mapping - Add sheet_share module to vault data structures
* Add build script for compile info and installer generation魏曹先生2025-12-241-0/+2
|
* Refactor vault config to use template-based generation魏曹先生2025-12-011-0/+29
| | | | | | | | | - Replace direct serialization with template-based config file generation - Add new dependencies: whoami, redox_syscall, wasite, web-sys - Update VaultConfig structure with new enum types and serialization attributes - Modify setup_vault to accept vault_name parameter and use template - Update all test calls to include vault_name parameter
* feat: Add file status tracking and SHA1 hash system魏曹先生2025-11-171-0/+153
| | | | | | | - Implement SHA1 hash calculation module with async support - Add file status analysis for tracking moves, creates, and modifications - Enhance local file management with relative path handling - Update virtual file actions with improved tracking capabilities
* fix: Windows support魏曹先生2025-11-091-5/+18
|
* Add strip-ansi-escapes dependency to string_proc魏曹先生2025-11-071-0/+21
|
* update: Dependencies and project configuration魏曹先生2025-11-061-0/+145
| | | | | | - Update Cargo.lock with latest dependencies - Add new dependencies to Cargo.toml - Update vcs_data crate dependencies
* Update dependencies to latest versions魏曹先生2025-10-271-224/+194
|
* Re-export subcrate `action_system` to `just_enough_vcs`魏曹先生2025-10-241-0/+1
|
* feat: Add JSON-based action invocation to ActionPool魏曹先生2025-10-131-0/+5
| | | | | | | | - Extend action_gen macro to generate JSON serialization logic - Implement generic action processing using JSON text for type-agnostic calls - Add callback mechanism with action name and arguments in ActionPool - Update client and server registries to use new callback system - Improve action system flexibility at the cost of serialization overhead
* chore: Update Cargo.lock with new dependencies魏曹先生2025-10-121-0/+6
|
* chore: update workspace configuration and dependencies魏曹先生2025-10-061-0/+11
| | | | | | - Add examples to workspace members - Update vcs_data dependencies structure - Fix library re-export paths in main lib.rs
* Update workspace configuration for new crate structure魏曹先生2025-10-061-4/+16
| | | | | | - Replace vcs with vcs_data and vcs_actions in workspace members - Update Cargo.lock dependencies to reflect new crate names - Maintain workspace structure with reorganized crates
* Update workspace configuration for action_system rename魏曹先生2025-10-061-21/+21
| | | | | | - Replace vcs_service with action_system in workspace members - Update Cargo.lock dependencies to reflect new crate names - Maintain workspace structure with renamed crates
* Update dependencies and workspace configuration魏曹先生2025-10-061-0/+21
| | | | | | - Add vcs_service to workspace members in Cargo.toml - Update Cargo.lock with new vcs_service dependencies - Add vcs_service dependency to vcs crate
* Add incremental transfer functionality and update TCP connection utilities魏曹先生2025-09-291-0/+32
| | | | | | | | - Add instance_incremental_transfer module for handling incremental data transfers - Add test_incremental_transfer module for testing incremental transfer functionality - Update TCP connection library to support new incremental transfer features - Update Cargo.toml dependencies for TCP connection utilities - Update main library to integrate new TCP connection functionality
* refactor: downgrade tcp_connection functionality to test utilities魏曹先生2025-09-261-0/+1
| | | | | | | | - Remove handle, target, target_configure, target_connection modules from main library - Create test_utils module in test project to contain temporary connection functionality - Update import paths in test files - Keep instance and error modules as core functionality - Adjust vcs_test configurations to adapt to new test structure
* feat(tcp_connection): add MessagePack serialization support魏曹先生2025-09-261-0/+30
| | | | | | | | | | | | - Add rmp-serde dependency for MessagePack serialization - Implement write_msgpack and read_msgpack methods for basic MessagePack support - Add write_large_msgpack and read_large_msgpack methods for chunked transmission - Add error conversions for rmp-serde errors - Add comprehensive tests for MessagePack functionality - Fix code formatting and improve readability - Make stream field pub(crate) for better access control All tests pass successfully, ensuring backward compatibility.
* Rename `env` to `vcs`魏曹先生2025-09-251-24/+24
|
* Add crate `dirs` for env魏曹先生2025-09-241-2/+71
|
* Add test for `env`魏曹先生2025-09-221-0/+3
|
* Add test for crate `env`魏曹先生2025-09-221-0/+7
|
* Add tokio for `env` crate魏曹先生2025-09-221-0/+2
|
* Add some dependencies 1. thiserror 2. Upgrade base64 3. pem 4. crc魏曹先生2025-09-211-8/+50
|
* Update Cargo.toml魏曹先生2025-09-211-29/+684
|
* Update Cargo.toml 1. Rename feature `default` to `all` 2. Add feature魏曹先生2025-09-201-3/+163
| | | | | `tcp_connection`, `string_proc`, `env` 3. Add crates `string_proc`, `env` to workspace 4. Removed crate `member_verify`
* Add `serde` dependencies for `tcp_connection` crate魏曹先生2025-09-171-0/+2
|
* Add workspace crates魏曹先生2025-09-141-0/+8
| | | | | 1. Add `tcp_connection` 2. Add `tcp_connection_test`
* Add modules魏曹先生2025-09-131-0/+11
| | | | | 1. Add `member_verify` modules 2. Add 'tcp_connection'modules
* Rename cfg_file_example to cfg_file_test魏曹先生2025-09-121-2/+1
|
* Update crate `cfg_file`魏曹先生2025-09-121-0/+4
| | | | Add feature `derive`
* Add Crate `cfg_file`魏曹先生2025-09-121-0/+558
.../utils/cfg_file .../cfg_file/cfg_file_derive .../cfg_file/cfg_file_example