Skip to content

Commit

Permalink
implementation of md6 in pure rust
Browse files Browse the repository at this point in the history
  • Loading branch information
truthixify committed Dec 25, 2024
1 parent 4f3cd25 commit 1d959af
Show file tree
Hide file tree
Showing 6 changed files with 871 additions and 0 deletions.
1 change: 1 addition & 0 deletions md6/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
6 changes: 6 additions & 0 deletions md6/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[package]
name = "md6"
version = "0.1.0"
edition = "2021"

[dependencies]
13 changes: 13 additions & 0 deletions md6/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Adapted from the original C code: https://github.com/brbsh/samp-plugin-md6


#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]

mod md6;
mod md6_compress;
mod md6_consts;

pub use md6::*;
pub use md6_compress::*;
Loading

0 comments on commit 1d959af

Please sign in to comment.