From e6be0f76d9ac0843dc5d3f0cc49ab53033dcdf22 Mon Sep 17 00:00:00 2001 From: shreyasm-dev <62489066+shreyasm-dev@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:15:44 +0000 Subject: [PATCH] Add test guidance + a little formatting --- Cargo.toml | 2 +- integration/main.rs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4099bbb..f692f27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jnat" -version = "0.10.0" +version = "0.10.1" edition = "2021" license = "MIT" description = "A wrapper around the jni crate" diff --git a/integration/main.rs b/integration/main.rs index 41bd654..6168b79 100644 --- a/integration/main.rs +++ b/integration/main.rs @@ -28,7 +28,8 @@ fn get_dylib_name(lib: &str) -> String { } fn setup() { - println!("Remember to run cargo build before running this!"); + println!("Remember to run cargo build before running this"); + println!("If you get weird errors, try running cargo clean"); env::set_var("RUST_APP_LOG", "debug"); pretty_env_logger::init_custom_env("RUST_APP_LOG"); @@ -188,5 +189,7 @@ fn main() { } } + println!(); + teardown(); }