Skip to content

Commit

Permalink
More dependency pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaum committed Feb 10, 2024
1 parent d173e70 commit 7b4e884
Show file tree
Hide file tree
Showing 14 changed files with 20 additions and 96 deletions.
81 changes: 0 additions & 81 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/console-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ clap.workspace = true
clap_derive.workspace = true

# General.
bincode.workspace = true
color-eyre.workspace = true
eyre.workspace = true

Expand Down
1 change: 0 additions & 1 deletion crates/daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ tracing-subscriber.workspace = true
tracing.workspace = true

## RPC daemon support
serde.workspace = true
serde_json.workspace = true
uuid.workspace = true
zmq.workspace = true
Expand Down
1 change: 0 additions & 1 deletion crates/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ tracing.workspace = true
arc-swap.workspace = true
atomic-wait.workspace = true
binary-layout.workspace = true
bincode.workspace = true
hi_sparse_bitset.workspace = true
im.workspace = true
io-uring.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/db/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
//


2 changes: 2 additions & 0 deletions crates/db/tests/jepsen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
//


#[path = "./test-support.rs"]
mod support;

Expand Down
2 changes: 2 additions & 0 deletions crates/db/tests/rdb_restore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
//


#[path = "./test-support.rs"]
mod support;

Expand Down
14 changes: 14 additions & 0 deletions crates/db/tests/test-support.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright (C) 2024 Ryan Daum <[email protected]>
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation, version 3.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
//

use moor_db::rdb::{RelBox, RelationInfo};
use std::path::PathBuf;
use std::sync::Arc;
Expand Down
1 change: 0 additions & 1 deletion crates/rpc-async-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ rpc-common = { path = "../rpc-common" }

bincode.workspace = true
futures-util.workspace = true
thiserror.workspace = true
tmq.workspace = true
tracing.workspace = true
uuid.workspace = true
2 changes: 0 additions & 2 deletions crates/rpc-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,3 @@ moor-values = { path = "../values" }

bincode.workspace = true
thiserror.workspace = true
tracing.workspace = true
uuid.workspace = true
1 change: 0 additions & 1 deletion crates/rpc-sync-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ rust-version.workspace = true
rpc-common = { path = "../rpc-common" }

bincode.workspace = true
thiserror.workspace = true
tracing.workspace = true
uuid.workspace = true
zmq.workspace = true
3 changes: 0 additions & 3 deletions crates/telnet-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@ rpc-common = { path = "../rpc-common" }
## Command line arguments parsing.
clap.workspace = true
clap_derive.workspace = true
strum.workspace = true

## General.
bincode.workspace = true
color-eyre.workspace = true
eyre.workspace = true
futures-util.workspace = true
futures.workspace = true

## Asynchronous transaction processing & networking
tokio-util.workspace = true
Expand Down
1 change: 0 additions & 1 deletion crates/values/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ num-traits.workspace = true
strum.workspace = true
thiserror.workspace = true
uuid.workspace = true
yoke-derive.workspace = true
yoke.workspace = true
4 changes: 0 additions & 4 deletions crates/web-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,14 @@ rpc-common = { path = "../rpc-common" }
## Command line arguments parsing.
clap.workspace = true
clap_derive.workspace = true
strum.workspace = true

# General.
bincode.workspace = true
color-eyre.workspace = true
eyre.workspace = true
futures-util.workspace = true
thiserror.workspace = true

## Asynchronous transaction processing & networking
tokio-util.workspace = true
tokio.workspace = true

## Logging & tracing
Expand All @@ -37,7 +34,6 @@ tmq.workspace = true
uuid.workspace = true

# HTTP/websockets layer
axum-extra.workspace = true
axum.workspace = true
serde.workspace = true
serde_derive.workspace = true
Expand Down

0 comments on commit 7b4e884

Please sign in to comment.