Files
saslauthd_yaml/Cargo.toml
T
Barry Pederson 52f502f7a6 Simplify Cargo.toml dependencies
Still need two copies of the dependencies, but at least they're in one place now.
2024-11-02 16:07:05 -07:00

29 lines
573 B
TOML

[package]
name = "saslauthd"
version = "0.2.0"
edition = "2021"
[workspace]
members = [
"common",
"server",
"client",
]
[workspace.dependencies]
clap = { version = "4.5.20", features = ["derive"] }
common = { path = "common" }
# Why do I need a [dependencies] that duplicates the [workspace.dependencies]?
# without this it doesn't work.
[dependencies]
clap = { version = "4.5.20", features = ["derive"] }
common = { path = "common" }
[[bin]]
name = "saslauthd"
path = "server/src/main.rs"
[[bin]]
name = "saslauthd_test_client"
path = "client/src/main.rs"