diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-02-01 22:42:11 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-02-01 22:42:11 +0100 |
| commit | d780391408b9e6d443e5e4f907748cae484b79fb (patch) | |
| tree | d961efd62478248081d1a327c818d6fa171f0a2d /server/Cargo.lock | |
| parent | 05b674190f26e2a58cc7b7288586c031552d50f3 (diff) | |
Use workspace instead of features
Having to include --feature=build-server in basically all commands
that wasn't building eyeballs-githook got tiring quickly.
Instead, use workspaces, with a separate project for building
the githook. It means I also had to add a library common with
code shared by both githook and server.
Diffstat (limited to 'server/Cargo.lock')
| -rw-r--r-- | server/Cargo.lock | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/server/Cargo.lock b/server/Cargo.lock index 8fd8e92..7dfa00a 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -551,9 +551,9 @@ name = "eyeballs" version = "0.1.0" dependencies = [ "anyhow", + "eyeballs-common", "futures", "ldap3", - "pathdiff", "rmp-serde", "rocket", "rocket_db_pools", @@ -568,6 +568,26 @@ dependencies = [ ] [[package]] +name = "eyeballs-common" +version = "0.1.0" +dependencies = [ + "futures", + "pathdiff", + "serde", + "tokio", +] + +[[package]] +name = "eyeballs-githook" +version = "0.1.0" +dependencies = [ + "eyeballs-common", + "rmp-serde", + "serde", + "tokio", +] + +[[package]] name = "fastrand" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
