Simplify Cargo.toml dependencies

Still need two copies of the dependencies, but at least they're in one place now.
This commit is contained in:
Barry Pederson
2024-11-02 16:07:05 -07:00
parent 076e48f457
commit 52f502f7a6
4 changed files with 10 additions and 7 deletions
+2 -2
View File
@@ -4,5 +4,5 @@ version = "0.2.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
common = { path = "../common" }
clap = { workspace = true }
common = { workspace = true }
+1 -1
View File
@@ -4,7 +4,7 @@ use clap::Parser;
use std::sync::LazyLock;
#[derive(Parser, Clone, Debug)]
/// saslauthd server/client
/// saslauthd server
pub struct Opt {
#[arg(
short = 'f',