Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion core/server-ng/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use iggy_binary_protocol::RequestHeader;
use iggy_common::{IggyTimestamp, PersonalAccessToken, UserStatus};
use message_bus::MessageBus;
use metadata::impls::metadata::StreamsFrontend;
use server::streaming::utils::crypto;
use server_common::crypto;
use std::cell::RefCell;
use std::rc::Rc;
use tracing::warn;
Expand Down
3 changes: 1 addition & 2 deletions core/server-ng/src/users.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ use iggy_binary_protocol::codec::{WireDecode, WireEncode};
use iggy_binary_protocol::requests::users::{ChangePasswordRequest, CreateUserRequest};
use iggy_binary_protocol::{Operation, RequestHeader};
use iggy_common::IggyError;
use server::streaming::utils::crypto;
use server_common::Message;
use server_common::{Message, crypto};

/// Replace a raw wire password with its Argon2 hash before replication.
///
Expand Down
2 changes: 0 additions & 2 deletions core/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ systemd = ["dep:sd-notify"]
[dependencies]
ahash = { workspace = true }
anyhow = { workspace = true }
argon2 = { workspace = true }
async-channel = { workspace = true }
async_zip = { workspace = true }
axum = { workspace = true }
Expand Down Expand Up @@ -79,7 +78,6 @@ opentelemetry-semantic-conventions = { workspace = true }
opentelemetry_sdk = { workspace = true }
papaya = { workspace = true }
prometheus-client = { workspace = true }
rand = { workspace = true }
ringbuffer = { workspace = true }
rmp-serde = { workspace = true }
rolling-file = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion core/server/src/streaming/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// under the License.

pub mod address;
pub mod crypto;
pub mod file;
pub mod ptr;
pub use iggy_common::random_id;
pub use server_common::crypto;
2 changes: 2 additions & 0 deletions core/server_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ publish = false

[dependencies]
aligned-vec = { workspace = true }
argon2 = { workspace = true }
bytemuck = { workspace = true }
bytes = { workspace = true }
compio = { workspace = true }
Expand All @@ -36,6 +37,7 @@ iggy_binary_protocol = { workspace = true }
iggy_common = { workspace = true }
lending-iterator = { workspace = true }
moka = { workspace = true }
rand = { workspace = true }
rcgen = { workspace = true }
rustls = { workspace = true }
smallvec = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions core/server_common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ pub mod bootstrap;
mod buffer;
mod certificates;
mod consensus_message;
pub mod crypto;
mod deduplication;
pub mod diagnostics;
pub mod executor;
Expand Down
Loading