1
0
Fork 0

Add common struct

This commit is contained in:
Florian RICHER 2022-01-28 22:06:47 +01:00
parent cdb82d6ccc
commit 4b94fa645c
10 changed files with 65 additions and 25 deletions

7
crates/hotload_plugin/Cargo.lock generated Normal file
View file

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "hotload_plugin"
version = "0.1.0"

View file

@ -0,0 +1,8 @@
[package]
name = "hotload_plugin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -0,0 +1,12 @@
#[repr(C)]
#[derive(Debug, Clone)]
pub struct HotloadPlugin {
// The plugin's name
pub name: String,
// The plugin's version
pub version: String,
// The plugin's author
pub author: String,
}