- name: cargo clippy
image: ekidd/rust-musl-builder:1.47.0
commands:
- - cargo clippy
+ - cargo clippy --all-targets --all-features -- -D warnings
- name: check documentation build
image: ekidd/rust-musl-builder:1.47.0
let activity_queue = create_activity_queue();
let chat_server = ChatServer::startup(
pool.clone(),
- rate_limiter.clone(),
+ rate_limiter,
|c, i, o, d| Box::pin(match_websocket_operation(c, i, o, d)),
Client::default(),
- activity_queue.clone(),
+ activity_queue,
)
.start();
LemmyContext::create(
lang: "browser".into(),
show_avatars: true,
send_notifications_to_email: false,
- actor_id: Some(format!("http://localhost:8536/u/{}", name).to_string()),
+ actor_id: Some(format!("http://localhost:8536/u/{}", name)),
bio: None,
local: true,
private_key: Some(user_keypair.private_key),