Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading