chore: fix

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-09-24 01:14:50 +02:00
parent ca532681e5
commit 8a648c98cc
10 changed files with 24 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
fn main() {
#[no_mangle]
fn envelope_capnp_benchmark(content: &[u8]) -> () {
fn envelope_capnp_benchmark(content: &[u8]) {
let out = crunch_envelope::wrap("some-domain", "some-entity", content);
let out = crunch_envelope::unwrap(&out).expect("to be able to unwrap capnp message");
@@ -9,7 +9,7 @@ fn main() {
}
#[no_mangle]
fn envelope_json_benchmark(content: &[u8]) -> () {
fn envelope_json_benchmark(content: &[u8]) {
let out = crunch_envelope::json::wrap("some-domain", "some-entity", content);
let out = crunch_envelope::json::unwrap(&out).expect("to be able to unwrap capnp message");
@@ -19,9 +19,9 @@ fn main() {
let large_content: [u8; 1000000] = [0; 1000000];
_ = envelope_capnp_benchmark(&large_content);
envelope_capnp_benchmark(&large_content);;
_ = envelope_json_benchmark(&large_content);
envelope_json_benchmark(&large_content);;
println!("done")
}