From 306f7318d7eb3527ae1b447ea07525c67367c4d8 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Mon, 23 Jun 2025 20:32:19 -0500 Subject: [PATCH] navka -> lesavka migration --- client/Cargo.toml | 2 +- common/Cargo.toml | 7 +++++-- server/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/client/Cargo.toml b/client/Cargo.toml index f39f73c..e6468b0 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -12,7 +12,7 @@ tokio = { version = "1.45", features = ["full", "fs", "rt-mult tonic = { version = "0.13", features = ["transport"] } tokio-stream = { version = "0.1", features = ["sync"] } anyhow = "1.0" -lesavka_common = { path = "../common" } +lesavka_common = { path = "../common" } tracing = { version = "0.1", features = ["std"] } tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] } tracing-appender = "0.2" diff --git a/common/Cargo.toml b/common/Cargo.toml index 7a0077b..d714e6c 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,8 +1,11 @@ -[package] +[[bin]] name = "lesavka-common" +path = "build.rs" + +[package] +name = "lesavka_common" version = "0.2.0" edition = "2024" -build = "build.rs" [dependencies] tonic = { version = "0.13", features = ["transport"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 8294aee..f33f0a8 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -12,7 +12,7 @@ tokio = { version = "1.45", features = ["full", "fs"] } tokio-stream = "0.1" tonic = { version = "0.13", features = ["transport"] } anyhow = "1.0" -lesavka_common = { path = "../common" } +lesavka_common = { path = "../common" } tracing = { version = "0.1", features = ["std"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } libc = "0.2"