- Remove gitlinks (160000 mode) for chainfire, flaredb, iam - Add workspace contents as regular tracked files - Update flake.nix to use simple paths instead of builtins.fetchGit This resolves the nix build failure where submodule directories appeared empty in the nix store. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
312 B
Rust
7 lines
312 B
Rust
//! Lightweight protocol buffer definitions for Chainfire (client-side)
|
|
//! Generates client stubs only (no storage/backend dependencies).
|
|
|
|
// Generated client stubs live under the `proto` module to mirror chainfire-api's re-exports.
|
|
pub mod proto {
|
|
include!(concat!(env!("OUT_DIR"), "/chainfire.v1.rs"));
|
|
}
|