Skip to content

Commit b858f12

Browse files
hongkongkiwiclaude
andcommitted
fix: Remove unused import and clean up workspace members
- Remove unused Path import from split_model example - Remove RPC example from workspace members on split-model-loading branch 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5bbf90d commit b858f12

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ members = [
88
"examples/reranker",
99
"examples/mtmd",
1010
"examples/split_model",
11-
"examples/rpc",
1211
]
1312

1413
[workspace.dependencies]

examples/split_model/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use llama_cpp_2::{
1616
};
1717
use std::io::{self, Write};
1818
use std::num::NonZeroU32;
19-
use std::path::{Path, PathBuf};
19+
use std::path::PathBuf;
2020

2121
/// Command line arguments for the split model example
2222
#[derive(Parser, Debug)]

0 commit comments

Comments
 (0)