Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Nov 14, 2023
1 parent e2cb6be commit 4f33df2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 27 deletions.
6 changes: 3 additions & 3 deletions backend/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 backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mailcrab-backend"
version = "0.10.0"
version = "1.0.0-alpha.0"
edition = "2021"
publish = false

Expand Down
21 changes: 0 additions & 21 deletions backend/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,27 +168,6 @@ async fn receive_message() {
assert_eq!(sorted_messages[2].attachments.len(), 1);
}

#[tokio::test]
#[ignore]
async fn measure_performance() {
let now = std::time::Instant::now();
let furures = (0..999)
.map(|_| send_message(false, true, false))
.collect::<Vec<_>>();

let mut i = 0;
futures::future::join_all(furures)
.await
.iter()
.for_each(|e| {
i += 1;
println!("{i} {:?}", e.as_ref().unwrap().message().next());
});

let later = std::time::Instant::now();
println!("Sending 1000 mails took {:?}", later - now);
}

#[tokio::test]
#[ignore]
async fn send_sample_messages() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/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 frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mailcrab-frontend"
version = "0.10.0"
version = "1.0.0-alpha.0"
edition = "2021"
publish = false

Expand Down

0 comments on commit 4f33df2

Please sign in to comment.