1
0
Fork 0

First commit

This commit is contained in:
Florian RICHER 2022-01-27 21:50:25 +01:00
commit 39248b2ca3
8 changed files with 140 additions and 0 deletions

7
plugins/hotload_toto1/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_toto1"
version = "0.1.0"

View file

@ -0,0 +1,12 @@
[package]
name = "hotload_toto1"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# hotload_plugin = { path = "../../crates/hotload_plugin" }
[lib]
crate-type = ["dylib"]

View file

@ -0,0 +1,4 @@
#[no_mangle]
pub extern fn version() -> String {
"0.2.0".to_string()
}