Skip to content

Commit

Permalink
v1.2.17
Browse files Browse the repository at this point in the history
- Removes the irrelevant public function call
  • Loading branch information
azazelm3dj3d committed Jan 6, 2023
1 parent 908747f commit ecb7fde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mercy"
version = "1.2.16"
version = "1.2.17"
edition = "2021"
authors = ["azazelm3dj3d"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Since Mercy is a standard crate, it can easily be utilized in any project alread

Add the following line to your `Cargo.toml` file:
```toml
mercy = "1.2.16"
mercy = "1.2.17"
```

Once the `Cargo.toml` file is updated, you can import the crate and use the provided methods by running `cargo run`. There are lots of different examples available below.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ use sys_info::{

/// Learn more about the crate
pub fn mercy_source() -> String {
const VERSION: &str = "1.2.16";
const VERSION: &str = "1.2.17";
const AUTHOR: &str = "Catherine Framework (https://github.com/CatherineFramework)";
return format!("Author: {}\nVersion: {}\nDocumentation: https://docs.rs/crate/mercy/latest", AUTHOR, VERSION);
}
Expand Down Expand Up @@ -276,7 +276,7 @@ fn unknown_msg(custom_msg: &str) -> String {

// Handles the actual JSON response from the url request
#[tokio::main]
pub async fn malicious_domain_status(domain: &str) -> String {
async fn malicious_domain_status(domain: &str) -> String {
url_request(domain).await.unwrap();

// Saves a local JSON file for parsing
Expand Down

0 comments on commit ecb7fde

Please sign in to comment.