Remove unused pkg

This commit is contained in:
Tristan D. 2024-09-09 15:03:22 +02:00
parent 3c3c232972
commit 3171dc6c63
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
7 changed files with 4 additions and 23 deletions

4
Cargo.lock generated
View file

@ -4059,10 +4059,6 @@ version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a385b1be4e5c3e362ad2ffa73c392e53f031eaa5b7d648e64cd87f27f6063d7" checksum = "2a385b1be4e5c3e362ad2ffa73c392e53f031eaa5b7d648e64cd87f27f6063d7"
[[package]]
name = "llama_cpp_spec_wrapper"
version = "0.1.1"
[[package]] [[package]]
name = "llama_forge_rs" name = "llama_forge_rs"
version = "0.1.1" version = "0.1.1"

View file

@ -10,8 +10,6 @@ opt-level = 1
opt-level = 1 opt-level = 1
[profile.dev.package.leptos_stub] [profile.dev.package.leptos_stub]
opt-level = 1 opt-level = 1
[profile.dev.package.llama_cpp_spec_wrapper]
opt-level = 1
[profile.release] [profile.release]
@ -29,7 +27,7 @@ lto = "fat"
panic = "abort" panic = "abort"
[workspace] [workspace]
members = ["llama_forge_rs", "leptos_stub", "frozen_llama", "llama_cpp_spec_wrapper"] members = ["llama_forge_rs", "leptos_stub", "frozen_llama"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]

2
clippy.yml Normal file
View file

@ -0,0 +1,2 @@
too-many-arguments-threshold = 20
enum-variant-name-threshold = 10

View file

@ -1,4 +1,3 @@
#[cfg(feature = "ssr")] #[cfg(feature = "ssr")]
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {

View file

@ -1,12 +0,0 @@
[package]
name = "llama_cpp_spec_wrapper"
authors.workspace = true
description.workspace = true
license.workspace = true
publish.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
edition.workspace = true
[dependencies]

View file

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}

View file

@ -20,6 +20,7 @@ pub struct BackendProcess {
/// - `WaitingForStop`: The process is waiting to be stopped. /// - `WaitingForStop`: The process is waiting to be stopped.
/// - `Finished`: The process has completed its execution successfully. /// - `Finished`: The process has completed its execution successfully.
/// - `Failed`: The process has failed or encountered an error during execution. /// - `Failed`: The process has failed or encountered an error during execution.
///
/// This enum is used to keep track of the state of a process in a backend application, allowing for proper management and control over the process lifecycle. /// This enum is used to keep track of the state of a process in a backend application, allowing for proper management and control over the process lifecycle.
#[derive( #[derive(
Default, PartialEq, Debug, Clone, Serialize, Deserialize, sqlx::Type, strum::EnumString, Default, PartialEq, Debug, Clone, Serialize, Deserialize, sqlx::Type, strum::EnumString,