Skip to content

Commit

Permalink
Name change (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
battleoverflow committed Nov 30, 2022
1 parent 6dc6adc commit 7daa0de
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github: [Hifumi1337]
patreon: hifumisoftware
patreon: hifumi1337lol
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "BSD-2-Clause"
categories = ["cryptography", "encoding"]
keywords = ["hashing", "decode", "encode", "cracking"]
description = "Mercy is a public Rust crate created to assist with building cybersecurity frameworks, assessment tools, and numerous other projects"
repository = "https://github.com/umikolabs/mercy"
repository = "https://github.com/cybersuki/mercy"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 2-Clause License

Copyright (c) 2022, Umiko Labs
Copyright (c) 2022, CyberSuki
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ use mercy::{
};

fn main() {
// Encode string "Umiko Labs"
mercy_encode("base64", "Umiko Labs");
// Encode string "CyberSuki"
mercy_encode("base64", "CyberSuki");

// Decode string "VW1pa28gU2VjdXJpdHk="
mercy_decode("base64", "VW1pa28gU2VjdXJpdHk=");
// Decode string "Q3liZXJTdWtp"
mercy_decode("base64", "Q3liZXJTdWtp");
}
```

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Umiko Labs (https://github.com/umikolabs)
CyberSuki (https://github.com/cybersuki)
File: src/lib.rs
Author(s): {
Expand Down Expand Up @@ -29,7 +29,7 @@ use sys_info::{

pub fn mercy_source() -> String {
const VERSION: &str = "1.1.12";
const AUTHOR: &str = "Umiko Labs (https://github.com/umikolabs)";
const AUTHOR: &str = "CyberSuki (https://github.com/cybersuki)";
return format!("Author: {}\nVersion: {}\nDocumentation: https://docs.rs/crate/mercy/latest", AUTHOR, VERSION);
}

Expand Down

0 comments on commit 7daa0de

Please sign in to comment.