Skip to content

Commit d271a2b

Browse files
feat(Mountain/Vine): Add ProtoValueConverter utility module for IPC data serialization
- Introduces `ProtoValueConverter` module to handle conversions between `serde_json::Value` and Protocol Buffers' `Value` type - Enables type-safe data interchange between `Mountain` backend and sidecar processes via `Vine` IPC layer - Facilitates efficient serialization/deserialization for cross-language RPC calls (Rust <-> JS in `Cocoon`) - Supports MVP Path A extension communication by ensuring compatibility with VS Code extension protocol requirements - Part of foundational work for `Vine` IPC system that will also benefit future `Grove` native host development
1 parent e117a00 commit d271a2b

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Source/Ipc/Util/mod.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// File: Ipc/Util/mod.rs
2+
// Declares and exports utility modules for the IPC system.
3+
4+
#![allow(non_snake_case, non_camel_case_types)]
5+
6+
// This module contains helper functions for converting between
7+
// `serde_json::Value` and `google.protobuf.Value`.
8+
mod ProtoValueConverter;
9+
10+
// Re-export all public items from the converter module.
11+
pub use self::ProtoValueConverter::*;

0 commit comments

Comments
 (0)