diff --git a/Cargo.lock b/Cargo.lock index 990b46cf0..daf2d714a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1972,6 +1972,7 @@ version = "0.1.0" dependencies = [ "extism", "log", + "serde", ] [[package]] @@ -2404,9 +2405,9 @@ checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" [[package]] name = "serde" -version = "1.0.205" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150" +checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09" dependencies = [ "serde_derive", ] @@ -2422,9 +2423,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.205" +version = "1.0.209" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1" +checksum = "a5831b979fd7b5439637af1752d535ff49f4860c0f341d1baeb6faf0f4242170" dependencies = [ "proc-macro2", "quote", diff --git a/pumpkin-plugin/Cargo.toml b/pumpkin-plugin/Cargo.toml index a3d6bea27..e757c6539 100644 --- a/pumpkin-plugin/Cargo.toml +++ b/pumpkin-plugin/Cargo.toml @@ -5,4 +5,5 @@ edition.workspace = true [dependencies] extism = "1.5.0" -log.workspace = true \ No newline at end of file +log.workspace = true +serde ={ version = "1.0.209", features = ["derive"] } \ No newline at end of file diff --git a/pumpkin-plugin/src/api/identifer.rs b/pumpkin-plugin/src/api/identifer.rs new file mode 100644 index 000000000..cdfce0e47 --- /dev/null +++ b/pumpkin-plugin/src/api/identifer.rs @@ -0,0 +1,15 @@ +use extism::{convert::Msgpack, host_fn, FromBytes, ToBytes}; +use serde::{Deserialize, Serialize}; + +/// Used to keep track of things created by plugins. +/// This can include things like events, commands, etc. +#[derive(Hash, PartialEq, Eq, ToBytes, FromBytes, Serialize, Deserialize)] +#[encoding(Msgpack)] +struct Identifier { + namespace: String, + path: String, +} + +host_fn!(new(namespace: String, path: String) -> Result { + Ok(Identifier { namespace, path }) +}); diff --git a/pumpkin-plugin/src/api/mod.rs b/pumpkin-plugin/src/api/mod.rs new file mode 100644 index 000000000..e9cb03788 --- /dev/null +++ b/pumpkin-plugin/src/api/mod.rs @@ -0,0 +1 @@ +mod identifer; diff --git a/pumpkin-plugin/src/lib.rs b/pumpkin-plugin/src/lib.rs index 3ac56bf6f..66865e2c0 100644 --- a/pumpkin-plugin/src/lib.rs +++ b/pumpkin-plugin/src/lib.rs @@ -1,3 +1,5 @@ +mod api; + use std::path::Path; use extism::{Manifest, Plugin, Wasm};